Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be 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
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:
 
<ECLIPSELINK_HOME>/eclipselink/bin/jaxb-compiler.sh -help
 
<ECLIPSELINK_HOME>/eclipselink/bin/jaxb-compiler.sh -help
 
<br><ECLIPSELINK_HOME>\eclipselink\bin\jaxb-compiler.cmd -help
 
<br><ECLIPSELINK_HOME>\eclipselink\bin\jaxb-compiler.cmd -help
 +
 +
 +
See ''[http://www.eclipse.org/eclipselink/documentation/ Developing JAXB Applications Using EclipseLink MOXy]'' for more information.

Latest revision as of 13:30, 30 January 2013

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>/eclipselink/bin/jaxb-compiler.sh example.xsd -d targetDirectory
<ECLIPSELINK_HOME>\eclipselink\bin\jaxb-compiler.cmd example.xsd -d targetDirectory


For more detailed compiler options:

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


See Developing JAXB Applications Using EclipseLink MOXy for more information.

Back to the top