i am having a wsdl file that defines the soap webservice . I also have java 8 installed in my machine How can i generate java classes using JAXB
really appreciate any help
i am having a wsdl file that defines the soap webservice . I also have java 8 installed in my machine How can i generate java classes using JAXB
really appreciate any help
PROJECT_PACKAGE - Package
FILE - File name
DIRECTORY_PATH - Extraction Path (folder)
Enter the following command at the terminal:
xjc -p PROJECT_PACKAGE FILE.xsd -d DIRECTORY_PATH
E.g. this:
xjc -p test.jaxb user.xsd -d teste
will generate the following path:
teste/test/jaxb/*.java