Tagged Questions
Java Architecture for XML Binding (JAXB) is the Java standard (JSR-222) for working with XML as domain objects. It provides an easy to use mechanism for mapping Java classes to XML representations. An implementation is included as part of the Java SE 6 API. There are several implementations available including Metro JAXB (the reference implementation), EclipseLink MOXy, and JaxMe.
24
votes
4answers
9k views
Difference of maven jaxb plugins
I have determined that two jaxb plugin for maven2 exist, with some different configurations.
The one is from Sun: http://jaxb.dev.java.net/jaxb-maven2-plugin/ the other from Mojo: ...
23
votes
4answers
34k views
Simple conversion between java.util.Date and XMLGregorianCalendar
I'm looking for a simple method of converting between java.util.Date and javax.xml.datatype.XMLGregorianCalendar in both directions.
Here is the code that I'm using now:
import ...
21
votes
1answer
2k views
JAXB multiple schemas with element reference
I have two schema's which are processed using JAXB. The first schema is preprocessed and information of this is used using an episode file (following ...
21
votes
8answers
10k views
What is JAXB and why would I use it?
There is guy here swearing up and down that JAXB is the greatest thing since sliced bread. I am curious to see what stackoverflow users think the use case is for JAXB and what makes it a good or a ...
19
votes
2answers
803 views
How to merge common parts of WSDL and XSD from different services?
I have to interact with a set of web-services that each come with their own WSDL and XSD. The XSD are sometimes merged in a single file sometimes spread along multiple files (20-30). However, from ...
19
votes
4answers
12k views
What's the point of JAXB 2's ObjectFactory classes?
I'm new to using JAXB, and I used JAXB 2.1.3's xjc to generate a set of classes from my XML Schema. In addition to generating a class for each element in my schema, it created an ObjectFactory class.
...
19
votes
8answers
19k views
No @XmlRootElement generated by JAXB
I'm trying to generate Java classes from the FpML (Finanial Products Markup Language) version 4.5. A ton of code is generated, but I cannot use it. Trying to serialize a simple document I get this:
...
16
votes
6answers
17k views
JAXB inheritance, unmarshal to subclass of marshaled class
I'm using JAXB to read and write XML. What I want is to use a base JAXB class for marshalling and an inherited JAXB class for unmarshalling. This is to allow a sender Java application to send XML to ...
14
votes
1answer
10k views
How to generate a Java class which implements Serializable interface from xsd using JAXB?
I would like to introduce caching into an existing Spring project which uses JAXB to expose WebServices. Caching will be done on the level of end points. In order to do that classes generated from XSD ...
14
votes
3answers
11k views
JAXB Marshalling with null fields
This is a pretty simple request, but I just didn't find a way to do it.
I'm basically trying to set up a role in JAXB which says that whenever an null field is encountered, instead of ignoring it in ...
14
votes
4answers
31k views
JAXB: How should I marshal complex nested data structures?
I have several complex data structures like
Map< A, Set< B > >
Set< Map< A, B > >
Set< Map< A, Set< B > > >
Map< A, Map< B, Set< C > > >
...
13
votes
3answers
21k views
java.util.List is an interface, and JAXB can't handle interfaces
I seemed to get the following exception when trying to deploy my application:
Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 2 counts of IllegalAnnotationExceptions
...
13
votes
12answers
2k views
Java XML Binding
What are you using for binding XML to Java? JAXB, Castor, and XMLBeans are some of the available choices. The comparisons that I've seen are all three or four years old. I'm open to other suggestions. ...
12
votes
2answers
301 views
JAXB processing of XML sequences
I'm trying to process some XML files using the JAXB implementation shipped in Java 7. I'm using these versions :
501 ~ % xjc -version
xjc 2.2.4
502 ~ %java -version
java version "1.7.0_01"
...
12
votes
2answers
5k views
jaxb unmarshal timestamp
I cannot get JAXB to unmarshal a timestamp in a Resteasy JAX-RS server application.
My class looks like this:
@XmlAccessorType(XmlAccessType.NONE)
@XmlRootElement(name = "foo")
public final class ...
12
votes
1answer
7k views
How can I customize serialization of a list of JAXB objects to JSON?
I'm using Jersey to create a REST web service for a server component.
The JAXB-annotated object I want to serialize in a list looks like this:
@XmlRootElement(name = "distribution")
@XmlType(name = ...
11
votes
1answer
147 views
JAXB and Guice: How to integrate and visualize?
I find using JAXB together with Guice possible, but challenging: Both libraries "fight" for control over object creation, you have to be careful to avoid cyclic dependencies, and it can get messy with ...
11
votes
2answers
2k views
Is there a way to avoid undeployment memory leaks in Tomcat?
This question is for anyone who's ever tested the "Find leaks" button in the Tomcat manager and got some results like this:
The following web applications were stopped (reloaded, undeployed), but ...
11
votes
2answers
7k views
How to validate against schema in JAXB 2.0 without marshalling?
I need to validate my JAXB objects before marshalling to an XML file. Prior to JAXB 2.0, one could use a javax.xml.bind.Validator. But that has been deprecated so I'm trying to figure out the proper ...
11
votes
3answers
30k views
JAXB: How to ignore namespace during unmarshalling XML document?
My schema specifies a namespace, but the documents don't. What's the simplest way to ignore namespace during JAXB unmarshalling (XML -> object)?
In other words, I have
...
10
votes
4answers
8k views
Define Spring JAXB namespaces without using NamespacePrefixMapper
[Heavily edited as understanding progresses]
Is it possible to get Spring Jaxb2Marshaller to use a custom set of namespace prefixes (or at least respect the ones given in the schema file/annotations) ...
10
votes
7answers
12k views
Generating a JAXB class that implements an interface
I'm currently using JAXB to generate java classes in order to unmarshall XML. Now I would like to create a new schema very similar to the first and have the classes that are generated implement the ...
10
votes
4answers
11k views
Why can't JAXB find my jaxb.index when running inside Apache Felix?
It's right there, in the package that it should be indexing. Still, when I call
JAXBContext jc = JAXBContext.newInstance("my.package.name");
I get a JAXBException saying that
"my.package.name" ...
9
votes
3answers
155 views
JAXB: when using XML schema (.xsd) to validate an XML file, if validation fail, can I know which XML tag causing it?
so right now when I validate the XML file using an XML schema, I am only able to know whether it fail or pass, and if I want to know why it fail, I need to look at the error message like
...
9
votes
4answers
367 views
Java: JAX-WS Mapping
I am using JAX-WS for web services.
Whenever I use a char as a method parameter, I am getting it as an unsignedShort in the xsd (Focus on weatherLetter).
Here is the declaration:
@WebMethod
public ...
9
votes
3answers
707 views
Unable to generate classes from JAXB in Maven environment
I'm using the xjc plugin in Maven environment and trying to generate classes from the Schema
I'm able to do this (Create classes) using xjc from command line, but unable to do the same using maven ...
9
votes
5answers
6k views
How to generate CDATA block using JAXB?
I am using JAXB to serialize my data to XML. The class code is simple as given below. I want to produce XML that contains CDATA blocks for the value of some Args. For example, current code produces ...
9
votes
2answers
9k views
Can one validate marshalled XML with JAXB 2.0?
Apparently in version 2 of JAXB - the validator class has been deprecated - does this mean the marshaller is automatically validating your XML? If so it doesn't seem to be complaining about some of ...
9
votes
9answers
4k views
Java JAXB Pros/Cons and Documentation
It's been a while since I used Java in anger so please forgive me if this is silly.
I have just got started on a Java project where we are using JAXB to de-serializing an incoming XML string (from ...
8
votes
3answers
486 views
JAXB :Need Namespace Prefix to all the elements
I am Using Spring WebServiceTemplate to make webservice call which uses JAXB to generate request XML. My requirement needs all the elements (including root) to have a namespace prefix (there is only a ...
8
votes
3answers
390 views
JAXB namespaces missing
I have generated Java classes from XSD, all works fine from a unmarshalling point of view.
However, when I marshall from JAXB classes I get the following:
<?xml version="1.0" encoding="UTF-8" ...
8
votes
2answers
887 views
JAXB: Generating classes for two XSDs which share a common XSD
I have 2 service XSD files AService.xsd and BService.xsd each with different targetNamespace. Both of these use a common XSD called common.xsd. I use the JAXB Maven plugin to generate classes. Here's ...
8
votes
1answer
2k views
Howto generate Java Enum from XML Schema with JAXB?
I am using the maven plugin maven-jaxb2-plugin to generate POJOs from a XSD Schema file.
This works fine. The only thing, thats really bothering me is, that the xml schema enumerations are not mapped ...
8
votes
3answers
2k views
How to use JAXB annotations in the client side for GWT?
I wanted to use the JaxB annotation in my class like this:
@XmlRootElement
public class ItemExtension implements Serializable {
But GWT complains when I put it in the client side.
[ERROR] Line 4: ...
8
votes
2answers
1k views
JAXB validation using annotations
If I have a simple class such as:-
@XmlRootElement
public class MyClass
{
@XmlAttribute(required=true)
private String myattribute
}
Is it possible to validate a corresponding xml document ...
8
votes
5answers
6k views
JAXB: How to avoid repeated namespace definition for xmlns:xsi
I have a JAXB setup where I use a @XmlJavaTypeAdapter to replace objects of type Person with objects of type PersonRef that only contains the person's UUID. This works perfectly fine. However, the ...
8
votes
2answers
5k views
Get rid of JAXBElement in classes generated by wsimport called from ant
I have the following problem:
I'm using the wsimport ant task to create a webservice client (for salesforce.com).
Everything's working fine but the generated classes all use this strange JAXBElement ...
8
votes
5answers
9k views
Unmarshalling collections in JaxB
suppose I have this class:
public class A {
private HashMap<String, B> map;
@XmlElement
private void setB(ArrayList<B> col) {
...
}
private ...
8
votes
4answers
8k views
JAXB - Remove 'standalone=“yes”' from generated XML
Do you know of a JAXB setting to prevent standalone="yes" from being generated in the resulting XML?
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
7
votes
1answer
374 views
Root element name in collections returned by RESTEasy
I'm using JAX-RS via RestEasy in JBoss AS 6. When my JAX-RS resource returns a collection of items (e.g. via a List), RESTEasy always uses the name collection as the root element.
E.g.
...
7
votes
1answer
590 views
Java Beans, BeanUtils, and the Boolean wrapper class
I'm using BeanUtils to manipulate Java objects created via JAXB, and I've run into an interesting issue. Sometimes, JAXB will create a Java object like this:
public class Bean {
protected ...
7
votes
4answers
2k views
Polymorphism in XSD schema and JAXB classes
I have an xml like this:
<todo>
<doLaundry cost="1"/>
<washCar cost="10"/>
<tidyBedroom cost="0" experiencePoints="5000"/>
</todo>
And the XSD schema for ...
7
votes
5answers
1k views
JAXB List Tag creating inner class
So we have an XSD type in the form:
<xs:complexType name="Foo">
<xs:all>
<xs:element name="Bars">
<xs:complexType>
<xs:sequence>
...
7
votes
1answer
1k views
How do you customize how JAXB generates plural method names?
We are using JAXB to generate Java classes and have encountered a few cases where generated plural method names are not correct. For example, where we expect getPhysicians we are getting getPhysicien. ...
7
votes
1answer
544 views
Scala: jaxb or similar?
As a java programmer I'm quite comfortable with using JAXB and similar,
for example to construct object from a XML spec.
I'm sure I can make JAXB work nice in scala, but I wonder
if that is the scala ...
7
votes
2answers
291 views
@XmlJavaTypeAdapter w/ Inheritance
I have an XmlJavaTypeAdapter defined for each Exception in my exception heirarchy. I use a wrapper object for marshaling the exceptions as below:-
@XmlRootElement
public Wrapper<T extends ...
7
votes
5answers
6k views
How can i tell jaxb / Maven to genereate multiple schema packages?
Example:
</plugin>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
...
7
votes
2answers
1k views
How do I marshal java.util.List with JAXB like JAX-RS (CXF, and Jersey) do
It seems the latest JAX-RS can handle methods returning java.util.List as the XMLRootElement but normal JAXB cannot.
I would like to mimic what CXF and Jersey are doing.
In other words I would like ...
7
votes
3answers
3k views
Java Web Services/JAXB - Abstract superclass
I have a package with JAXB annotated classes with an abstract superclass. I want to use this superclass in web service interface, so I
can pass any of subclasses as a parameter. When I do it, an ...
7
votes
5answers
2k views
JAXB - Beans to XSD or XSD to beans?
I have an existing data model. I would like to express this data model in terms of XML.
It looks like I have two options if I'm to use JAXB:
Create an XSD that mirrors my data model, and use xjc ...