EclipseLink/Examples/MOXy/JAXB/Compiler
< EclipseLink | Examples | MOXy | JAXB
Overview
The JAXB Compiler can be used to generate Java classes from an XML schema. The resulting classes contain JAXB annotations that represent the XML binding metadata.
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