Tagged Questions

For issues relating to the JAXB XML binding architecture, version 2.

learn more… | top users | synonyms

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. ...
6
votes
2answers
191 views

@XmlElements marked with @XmlJavaTypeAdapters?

I have this situation @XmlType(name ="", propOrder={"value"}) @XmlRootElement(name = "compound") public class Compound extends Value { @XmlElements({ @XmlElement(name="simple", ...
6
votes
2answers
2k views

Why does JAXB sometimes map to JAXBElement?

There is a placeholder answer over at the unofficial guide with a link to an article which (to me) seems quite unrelated. I use XJC to generate my JAXB classes and while most of them map to each ...
6
votes
4answers
5k views

Is it possible to customize the namespace prefix that JAXB uses when marshalling to a String?

For example, I've got a simple schema which imports another schema. The second schema (urn:just:attributes, just-attributes.xsd) just defines an attribute group. <?xml version="1.0" ...
5
votes
1answer
124 views

Duplicated field in generated XML using JAXB

This is my scenario. I have a generic class: public class Tuple<T> extends ArrayList<T> { //... public Tuple(T ...members) { this(Arrays.asList(members)); } ...
5
votes
2answers
380 views

Two classes have the same XML type name “objectFactory”

We have been using JAXB 2.1 for a long time in our system. We have a platform that is built with Ant and generates a bunch of bundles that are deployed in an OSGi runtime. We use Java SE 6. We use ...
5
votes
2answers
363 views

How to transform exceptions into return codes using Spring-WS?

I'm currently facing a problem with error codes and messages using Spring WS. We are using Spring WS 2.0 with a JAXB2 binding and the @Endpoint and @PayloadRoot annotations for convenience. Our ...
5
votes
3answers
5k views

JAXB: how to marshall map into <key>value</key>

The question is about JAXB Map marshalling - there is plenty of examples on how to marhsall a Map into a structure like follows: <map> <entry> <key> KEY </key> ...
5
votes
1answer
2k views

JAXB appending unneeded namespace declarations to tags

I'm implementing a homebrew subprotocol of XMPP, and i'm using combination of StAX and JAXB for parsing/marshalling mesages. And when I marshall a message I end up with loads of unneded namespace ...
3
votes
1answer
190 views

CXF java2ws: how to include external xsd files?

I generate WSDL files for several web services (from the server service definitions) where I have already XML schemas (*.XSD) for the beans used as parameters. How do I tell java2ws to reference these ...
3
votes
2answers
1k views

Spring 3, ReST, @ResponseBody and @ExceptionHandler

I have been trying to get exception handling working in my simple Spring 3 based ReST web services. Based on everything I have seen, there is a bug that prevents this from working automatically with ...
3
votes
1answer
244 views

Jaxb namespaces for java.util.Map properties

I have a simple class that contains a hashmap: @XmlRootElement() public class Customer { private long id; private String name; private Map<String, String> attributes; public ...
3
votes
4answers
964 views

JAXB 2.x: How to unmarshal an XML without knowing the target class?

If there is a way, how to do this, I'd like to know the most elegant one. Here is the question: - Let's assume you have an abstract class Z - You have two classes inherited from Z: named A and B. You ...
3
votes
1answer
777 views

Using Jaxb2Marshaller with multiple classes having same @XmlRootElement name

I am working on a web service using spring-mvc and Jaxb2Marshaller. I have two classes, both annotated with the same @XmlRootElement name @XmlRootElement(name="request") class Foo extends ...
3
votes
1answer
658 views

Why does JAXB 2 RI's XJC simple mode change collection names?

JAXB simple binding mode modifies collection names to their plural 'version', e.g. "additionalData" becomes "additionalDatas". Is there any solution to change this behavior? I need to have a Java ...
3
votes
2answers
639 views

JAXB2: Mapping nested elements into the same Java class

I'm having trouble trying to map nested elements into the same Java class. XML What I'm trying to do here is to set id attribute and text element into SlideText class. <module name="test ...
3
votes
1answer
2k views

Spring Batch & Jaxb2Marshaller

I am attempting to use Spring Batch to read an XML input file and save each chunk into a database, but I am getting the following exception: Caused by: javax.xml.bind.UnmarshalException - with ...
3
votes
3answers
2k views

JAXB 2.x : How to override an XmlElement annotation from parent class - Mission Impossible?

Why is this not possible? It seems so simple but it does not behave as expected. Summary: Class A uses an aggregated DataA bean whereas Class B (a subclass of Class A) is using an aggregated DataB ...
3
votes
3answers
230 views

Java object graph -> xml when direction of object association needs to be reversed

A java application I am working on has objects with a relationship similar to below. In the real application both objects are JPA entities. class Underlying{} class Thing { private Underlying ...
3
votes
2answers
702 views

Spring3, JAXB2, Java6, NamespacePrefixMapper questions

I built a simple Spring3, Hibernate3/(JPA2), RESTful service, hosted on Tomcat6, that uses JAXB2 to marshal the results. (It uses annotated pojos.) I needed to use specific namespace prefixes, so I ...
3
votes
4answers
2k views

406 Not Acceptable in Spring MVC application (OSGi, Virgo Web Server) using Jackson, Rome and JAXB2

I just started learning the Virgo Web Server. I'm trying to work with Jakcson JSON in Spring MVC application. At this stage I can not get a GET request serialized object. The server returns "406 Not ...
3
votes
2answers
166 views

XML + XSD => Java?

I need to make the above equation comes true! I have an XML file with its XSD schema, and I need to get the Java classes with the required code to parse the XML file and construct java objects.. I ...
3
votes
3answers
3k views

How to execute the JAXB compiler from ANT

I am using JAXB on a project. the attraction of JAXB is that it is bundled with the JDK, I have been to use xjc.exe on the command line to generate the .java files from a schema. I can't seem to find ...
2
votes
1answer
39 views

JAXB - empty tags with no xsi:nil

I have a String property in an object annotated as follows: @XmlElement(name = "Item", required = true, nillable = true) private String item; The result after marshaling is <Item ...
2
votes
0answers
46 views

Can I process jaxb annotations at compile-time?

I am experimenting to see if I can somehow make JAXB work on Android in a limited scenario. (using other libraries is not an option). I have gotten pretty far but at the moment I am stuck getting the ...
2
votes
1answer
91 views

JAXB multiple mappings for attribute

I'm just changing design errors made in the past, but want to keep backwards compatibility of my software. For this I would need some way to map two flavors of an xml file into one java bean. Can this ...
2
votes
0answers
38 views

Is it possible to define custom JAXB marshalling adapter for a member of collection?

I have a main class: @XmlRootElement @XmlAccessorType(XmlAccessType.NONE) public class Foo { @XmlAnyElement public Collection<Object> items; } Now I'm adding a new element to this items ...
2
votes
1answer
37 views

What is the default List implementation in Jaxb2, and how do I change it?

Does anyone know what the default implementation is for List instances in JaxB2? Is there a way to change the implementation, and if so, what is it?
2
votes
2answers
59 views

Jax-b is interpreting too much while unmarshalling

I have a boolean field called a and two methods void setA(String a) and boolean isA(). I have set @XmlAccessorType(XmlAccessType.NONE) and used @XmlAttribute for the setter. Because the getter ...
2
votes
1answer
78 views

Debugging Spring-WS request from MessageDispatcher to Endpoint?

Is there a way to debug step-by-step what happens on a web service request in Spring-WS from the time the request is sent to the MessageDispatcher until it reaches my Endpoint (including ...
2
votes
1answer
171 views

How to set Jaxb2Marshaller list of XmlAdapters in Spring bean through XML?

I'm trying to define a Jaxb2Marshaller bean in Spring-WS to use a custom adapter that extends XmlAdapter. I have the following in an XML file: <bean id="jaxb2Marshaller" ...
2
votes
1answer
67 views

FOP failing to use data when used with JAXB

I'm generating a document using FOP (0.95) by passing a source XML file created using JAXB (2.2.13), when I run it I get a virtually empty PDF (it looks like I'd expect if no data was supplied in the ...
2
votes
4answers
402 views

Insert custom setter in maven-jaxb2-plugin

I'm using the org.jvnet.jaxb2.maven2:maven-jaxb2-plugin to create POJOs from XSD schema files. Now I want to insert something like a custom setter. It should trim all Strings and should remove ...
2
votes
3answers
413 views

How to specify the JAXB version in maven-jaxb2-plugin?

I need to use the latest version jaxb: 2.2.4-1, but maven or maven-jaxb2-plugin seems to pick up the one from the JDK. I tried specifying the version like this: <configuration> ...
2
votes
2answers
109 views

How do I separate the <xsd:choice/> sub-elements into individual Collection properties using JAXB?

I have the following XSD fragment that is from a Vendor, I can't change the way it is specified: <xsd:element name="navmap"> <xsd:complexType> <xsd:choice minOccurs="0" ...
2
votes
1answer
160 views

JAXB empty node in bindings

JAXB can't parse the bindings for this example: <xs:element name="classA" type="classA" substitutionGroup="classSubA"/> <xs:complexType name="complexClassA" mixed="true"> ...
2
votes
1answer
425 views

JAXB: Qualified attributes disables default namespace xmlns=“”?

When I use @XmlSchema(attributeFormDefault = XmlNsForm.QUALIFIED, ...) or@XmlAttribute(namespace = "sample.com/y", ...) JAXB ignores @XmlSchema(namespace = "sample.com/x", ...) and instead of: ...
2
votes
1answer
185 views

Unmarshalling a Socket's InputStream closes the Socket?

I have a server-client architecture where the client sends an XML to the server who reads it and generates a PDF out of it and sends that back to the client. On the client side: ...
2
votes
1answer
98 views

Can/Should I list inherited properties for a JAXB mapped bean in the “propOrder” annotation?

I have a bunch of JAXB annotated classes that have a field in common, so I moved that field to a super class, like this public class Base { protected SomeType commonField; } @XmlRootElement(name ...
2
votes
1answer
83 views

How do you call a web service in Java with only XSD and NO WSDL?

I have a web service outside of my company that provides no WSDL for their service. They do provide: a detailed document on how to POST to their service what a SoapEnvelope should look like and ...
2
votes
1answer
164 views

JAXB ignores HashMap properties?

I'm using the JAXB implementation that comes with J2SE to serialize a bean that contains a HashMap property. I would assume that this should work out of the box since this states JAXB spec ...
2
votes
1answer
370 views

Spring AOP Logging Interceptor and JAXB issue

I am trying to implement logging aspect into my application. This is the first time I am attempting AOP, so please let me know if I am missing something obvious. In order to achieve weaving external ...
2
votes
3answers
63 views

Is there a way to map the value of a node when the node also has inner nodes?

I'm currently using JAXB annotations, which work great for most cases. However, I've come across something I can't figure out how to process/create annotations for. I have the following XML: ...
2
votes
3answers
385 views

Why is JAXB trying to bind Spring's ApplicationContext?

I'm working on a Spring application that exposes a JAX-WS web service. The web service implementation has a dependency on some spring-managed object in my service-layer and looks like this ...
2
votes
1answer
137 views

Can I use the JAXB2 Basics plugin with the MOXy JAXB implementation from EclipseLink? If not, is there an alternate?

Ultimately I want JAXB to generate hashCode and equals implementations. The JAXB2 Basics plugin does that and it works fine for the Metro JAXB implementation in the JDK but fails with MOXy. I get: ...
2
votes
1answer
180 views

Binding nested elements in a standard JAXB2 POJO

I have the following document model structure. <rootNode> <node1>someValue</node1> <node2>someValue</node2> <groupOfNodes> <groupNode> ...
2
votes
1answer
203 views

What Maven2 plugins are available for JAXB2?

I'd like to generate Java source code from an XML Schema file using JAXB2 via a Maven2 plugin (as in this blog post). There seem to be 2 Maven plugins for JAXB: The "Maven 2 JAXB 2.x Plugin" ...
2
votes
3answers
402 views

Configuring collection of polymorphic objects to work in JAXB2

I'm switching from Castor to JAXB2 to perform marshaling/unmarshaling between XML and Java object. I'm having problem trying to configure a collection of polymorphic objects. Sample XML <project ...
2
votes
1answer
315 views

How to marshal a JAXB class instance as its superclass

Is it possible to marshal a JAXB annotated class instance as its superclass (which is also a JAXB annotated class)? @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BenamningTYPE", propOrder = ...
2
votes
2answers
939 views

ClassCastException in casting DTMManagerDefault into DTMManager during maven jaxb codegen

I'm having a strange problem when trying to run a maven build that uses the jaxb2 plugin to do JAXB codegen (see stacktrace below). The best that I can figure is that there's some implementation of ...

1 2 3 4