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 ...
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
125 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
398 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
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 ...
4
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 ...
3
votes
1answer
44 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 ...
3
votes
1answer
192 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
246 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
981 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
782 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
671 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
647 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
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
232 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
167 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
0answers
47 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
94 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
38 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
80 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
175 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
4answers
405 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
1answer
440 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
99 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
372 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
387 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
140 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
204 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
404 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
2answers
765 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
1k views

Can I customize JAXB @XmlElementWrapper elements for a java.util.Map

I'm trying to learn to use Map with Jaxb. I did this: @XmlElementWrapper(name = "phoneNumbers", nillable = true) private Map<String, PhoneNumber> phoneNumbers; and the result was: ...
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
759 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
3answers
86 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
53 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
62 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
103 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
vote
1answer
53 views

Could I add XmlAdapter to JAXB from runtime (w/o annotation)?

In all cases XmlAdapter mentioned in pair with @XmlJavaTypeAdapter. Is it possible add my XmlAdapter from runtime API (necessary for CXF @XmlJavaTypeAdapter workaround)?

1 2 3