I am using JAXB on a project. the attraction of JAXB is that it is bundled with the JDK, I have been to use xjc.exe on the command line to generate the .java files from a schema. I can't seem to find the JAXB ant task, sure there is a download at https://jaxb.dev.java.net however i want to use the JAXB that is bundled into the JDK is there some way to call JAXB from ant what class does the xjc.exe call on?
|
feedback
|
|
Here is a helpful link: Java SE 6 does not ship the Ant task (see 7.1.3): Another related link: Essentially they do the following:
| |||||
feedback
|
Just went hunting in the tools.jar and found the XJCFacade.class in com.sun.tools.internal tested the above code it works it produces the output as xjc.exe It seems that XJC.exe calls this code com.sun.tools.internal.xjc.XJCFacade One of my key requirements was that the ant file had work within eclipse without having to include a path name to the JDK that way the file would be portable across operating systems. I am assuming that tools.jar is included on the classpath via the installed JRE preferences options. | |||
|
feedback
|
|
You cant find several sample Ant/JAXB projects in JAXB2 Basics: | |||
|
feedback
|
|
I found the solution for the problem which I mentioned above. Following line should get it working:
| |||
|
feedback
|