Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Examples/MOXy/JaxbClassGen"

m
Line 5: Line 5:
  
  
For more detailed compiler options try:
+
For more detailed compiler options:
  
 
<ECLIPSELINK_HOME>/bin/jaxb-compiler.sh -help
 
<ECLIPSELINK_HOME>/bin/jaxb-compiler.sh -help
 
<br><ECLIPSELINK_HOME>\bin\jaxb-compiler.cmd -help
 
<br><ECLIPSELINK_HOME>\bin\jaxb-compiler.cmd -help

Revision as of 13:28, 22 October 2007

The JAXB compiler can be run to generate JAXB annotated Java classes from an XML Schema. The following are examples of the most common usage:

<ECLIPSELINK_HOME>/bin/jaxb-compiler.sh example.xsd -d targetDirectory
<ECLIPSELINK_HOME>\bin\jaxb-compiler.cmd example.xsd -d targetDirectory


For more detailed compiler options:

<ECLIPSELINK_HOME>/bin/jaxb-compiler.sh -help
<ECLIPSELINK_HOME>\bin\jaxb-compiler.cmd -help

Back to the top