Tagged Questions

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 ...
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
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
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
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 ...
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
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
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
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
163 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
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
384 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
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
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
938 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 ...
2
votes
2answers
755 views

thread safety when using spring WebServiceTemplate and Jaxb2Marshaller

I am using spring WebServiceTemplate as a web service client programmatically i.e. without instantiating a spring container. I am using Jaxb2Marshaller for marshaling/unmarshaling. In my application, ...
2
votes
1answer
442 views

Spring web service: easy way to un-marshall a bean to XML client side?

I am utilizing spring to do all of the marshalling/unmarshalling of my bean objects (via jaxb2Marshaller/WebServiceTemplate). For debugging purposes, I would like to be able to spit out the ...
2
votes
2answers
179 views

Is it possible the generate shared objects using JAXB?

I have 3 xsd files: a.xsd b.xsd shared.xsd shared.xsd is imported to both a.xsd and b.xsd using <xs:import schemaLocation="shared.xsd"/> shared.xsd defines <xs:element ...
2
votes
1answer
757 views

JAXB 2.0 - How to skip processing of nodes and return them as a String

I am processing XML documents with JAXB 2.0 where I need information(in my example 'id') mapped to Java objects and run some business logic with. Everything works fine here. But these XML documents ...
2
votes
5answers
5k views

What is the Jaxb equivalent of a CData Block?

I am looking to convert a class that looks like this ... public class Amenity { public String id; public String value; } into the following XML using JaxB annotations: <amenity ...
2
votes
7answers
6k views

Class Cast Exception when trying to unmarshall xml?

Trying to get past a class cast exception here: FooClass fooClass = (FooClass ) unmarshaller.unmarshal(inputStream); throws this exception: java.lang.ClassCastException: javax.xml.bind.JAXBElement ...
1
vote
1answer
18 views

How can I get JAXB2 to emit CamelCase bindings?

I'm generating Java classes from a WSDL using the jaxws-maven-plugin's wsimport goal. Out of the box, this generates hideous classes and methods from the XML schema; e.g., a class called MYOBJECT from ...
1
vote
3answers
85 views

Good resource or and book to learn JAXB?

I am experienced with Java and XML, I have no used JAXB extensively in the past and am looking for a good book or site to really learn all the details. For example, many books and sites list the ...
1
vote
1answer
56 views

Generating JAXB class from XSDs with similar attribute names

I use maven-jaxb2-plugin to generate jaxb annotated classes from xsd. I have many xsd files like those: <?xml version="1.0" encoding="UTF-8"?> <xs:schema ...
1
vote
1answer
52 views

XmlRootElement annotation at abstract class - possible?

This is what I'm trying to do: @XmlRootElement(name = "bar") @XmlAccessorType(XmlAccessType.NONE) public abstract class Bar { } public final class Foo extends Bar { @XmlElement public String ...
1
vote
1answer
56 views

How to marshall an unwrapped collection in JAXB?

This is my class: @XmlRootElement(name = "foo") @XmlAccessorType(XmlAccessType.NONE) public class Foo { @XmlElement public Collection getElements() { List elements = new ArrayList(); ...
1
vote
2answers
102 views

Is it possible to @XmlElement annotate a method with non-stardard name?

This is what I'm doing: @XmlType(name = "foo") @XmlAccessorType(XmlAccessType.NONE) public final class Foo { @XmlElement(name = "title") public String title() { return "hello, world!"; } } ...
1
vote
0answers
27 views

JAXB: generate Java classes only for a subset of the XSD types

I have a couple of huge XML schema definition (XSD) files and I want to generate only for a subset of the defined types the corresponding Java classes. More precisely I have a list of "root" types ...

1 2