Top "Xjc" questions

XJC is a JAXB tool for compiling XSD (XML Schema) to Java source code.

Ant task to convert WSDL to POJO with the use of XJC gives an Error package name

I have an Ant task that takes a wsdl file and should auto generate POJO's (client side Java) , so I …

ant wsdl xjc jdk1.7
help please: xjc throws "Two declarations cause a collision in the ObjectFactory class"

Take the following over simplified XSD: <?xml version="1.0" encoding="UTF-8"?> <xs:schema targetNamespace="com.acme" xmlns:xs="…

web-services jaxb jax-ws wsimport xjc
Make JAXB XJC generate a wrapping class for a simple type

I have the following xml types: <xsd:element name="FaxNumbers" minOccurs="0"> <xsd:complexType> <xsd:sequence&…

java jaxb xjc
JAXB marshalling for BigDecimal using fractionDigits

So here's my problem. I'm given an XSD to which my generated XML file should comply. Using the org.apache.…

java xsd jaxb xjc cxf-xjc-plugin
JAXB javaType customization on xs:integer produces @XmlElement with "type=String.class"

When generating Java beans from a XSD with XJC, I need to map xs:integer to Integer rather than BigInteger. …

java jaxb2 xjc
XJC doesn't generate the @XmlElement with namespace?

I want to parse data using JAXB for the the following XSD schema http://www.uniprot.org/support/docs/uniprot.…

java jaxb xsd xjc stax
Java Compilation Speed

I have a Java project with ~2400 classes. They are mostly generated using XJC from XML schema with a few extensions. …

java maven compilation javac xjc
JAXB List Tag creating inner class

So we have an XSD type in the form: <xs:complexType name="Foo"> <xs:all> <…

java jaxb xjc
XJC Generating Integer Instead of int

The following schema should be generating two primitive int fields in a Value class, but instead generates a primitive int …

xsd jaxb code-generation xjc
When generating java sources with maven-jaxb2-plugin, how to enable setters for collections?

I am generating POJOs from XSD schemas using the maven-jab2-plugin. My generated classes don't have setters for any fields …

java xjc maven-jaxb2-plugin