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

EclipseLink/Examples/MOXy/JAXB/Compiler

< EclipseLink‎ | Examples‎ | MOXy‎ | JAXB
Revision as of 16:04, 29 January 2010 by Blaise.doughan.oracle.com (Talk | contribs) (New page: ==Running the JAXB Compiler== The JAXB compiler can be run to generate JAXB-annotated Java classes from an XML Schema: <source lang="text"> <ECLIPSELINK_HOME>/eclipselink/bin/jaxb-compil...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Running the JAXB Compiler

The JAXB compiler can be run to generate JAXB-annotated Java classes from an XML Schema:

<ECLIPSELINK_HOME>/eclipselink/bin/jaxb-compiler.sh <source-file.xsd> [-options]
<ECLIPSELINK_HOME>\eclipselink\bin\jaxb-compiler.cmd <source-file.xsd> [-options]
 
Options include:
   -d <dir>                     Specifies the output directory for generated files
   -p <pkg>                     Specifies the target package
   -classpath <arg>             Specifies where to find user class files
   -verbose                     Enable verbose output
   -quiet                       Suppress compiler output
   -version                     Display version information
 
For a complete list of compiler options:
   jaxb-compiler.sh -help
 
Example:
   jaxb-compiler.sh -d jaxb-compiler-output config/Customer.xsd

Copyright © Eclipse Foundation, Inc. All Rights Reserved.