For issues relating to the JAXB XML binding architecture, version 2.
18
votes
3answers
23k 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>
...
15
votes
2answers
4k 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. ...
12
votes
3answers
14k 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" ...
11
votes
3answers
10k 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 ...
11
votes
1answer
6k 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 ...
7
votes
1answer
2k views
JAXB java.util.Map binding
I have a Json response which looks like the following:
{
"data": [
{
"param1":"value1",
"param2":"value2",
.
.
.
...
6
votes
8answers
16k 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
...
6
votes
5answers
12k 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 ...
6
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 ...
6
votes
1answer
973 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));
}
...
6
votes
2answers
699 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
1k 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
5answers
7k views
What is the Jaxb equivalent of a Text node value?
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 ...
5
votes
3answers
4k 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
1answer
747 views
Using JAXB to support schemas with minor variations
The Situation
I need to support generating XML documents based on schemas that vary only slightly between each other. Specifically, the schemas that I need to support are based on industry standards ...
4
votes
2answers
3k 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 ...
4
votes
2answers
2k 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!";
}
}
...
4
votes
2answers
1k 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:
...
4
votes
1answer
993 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 ...
4
votes
1answer
518 views
Can xjc -version be trusted?
I've spent the day debugging an issue with JAXB getting namespaces wrong or missing (possibly related to Marshaller.JAXB_FRAGMENT, but that's not the point here).
I found the problem occurs with JAXB ...
4
votes
1answer
884 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" ...
4
votes
2answers
2k 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 ...
4
votes
4answers
6k 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 ...
4
votes
4answers
5k 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 ...
4
votes
1answer
3k 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:
...
4
votes
2answers
3k views
How to create a jaxb.index file on the fly using Ant (or Maven)
This is more of knowledge sharing rather than asking a question. Thought this little Ant snippet might be useful to someone.
<target name="create-jaxb-index" depends="compile">
<!-- ...
4
votes
1answer
3k 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 ...
4
votes
1answer
2k 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 ...
4
votes
2answers
633 views
Avoiding JAXBElement for substitution groups
I have a xsd which has the substitution groups in it . When i am trying to generate java classes using cxf wsdl2java JAXB generating List> rather than the List . How can i avoid the JAXBElement? I ...
3
votes
2answers
568 views
Skip the Generated on… in Java files using jaxb2 maven plugin
I'd like to get the maven-jaxb2-plugin to do not write the 'disclaimer':
This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, ...
3
votes
1answer
1k views
Can JAXB marshal by containment at first then marshal by @XmlIDREF for subsequent references?
I'm new to JAXB and I'm wondering if it's possible to annotate my classes so that the first time the marshaller encounters an object, it generates an XML element of the appropriate type, but any ...
3
votes
3answers
3k 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 ...
3
votes
1answer
1k views
Handling invalid enum values while doing JAXB Unmarshalling
My Jaxb has created a Enum class based on the XML schema set up.
**enum Fruit {
APPLE,ORANGE;
}**
I am using a SOAP UI to check my web service. Since it is a free form entry, if i give a wrong ...
3
votes
3answers
3k views
Specify a package instead of “classesToBeBound” for spring Jaxb2Marshaller
I am trying to use Jaxb2Marshaller to marshal a set of java classes using spring. I know this can be done using the following code
<bean id="jaxbMarshaller" ...
3
votes
1answer
2k views
How to handle forward references of XML IDREF with JAXB XmlAdapter during unmarshal?
Is it possible to handle forward references of XML IDREF elements in JAXB XmlAdapter during the unmarshal process? For example, I have the following XML complexType:
<xs:complexType ...
3
votes
2answers
472 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
3answers
384 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
457 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
1answer
213 views
JAXB 2 - Changes in between Java EE 5 and Java EE 6
I noticed a (kinda radical) change between the Java EE 6 tutorial and Java EE 5 tutorial in what JAXB is concerned, in the sense that in the 6 tutorial the details are slim and there is no longer a ...
3
votes
1answer
158 views
Generate source using jaxb from an xsd that is in my classpath
I'm trying to generate java classes using JAXB from a schema in my class path. For CXF I generated java classes from a wsdl in my classpath like so:
<wsdlOptions>
<wsdlOption>
...
3
votes
1answer
699 views
JAXB: Unmarshall to different classes based on an element's attribute value
I'd like to know if there's any way to unmarshall XML that contains a fixed element name whose attribute refers to a variety of classes. Consider the following XML:
Case #1:
<?xml version="1.0" ...
3
votes
3answers
4k 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>
...
3
votes
2answers
898 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
4answers
1k 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 ...
3
votes
2answers
4k 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
1answer
330 views
JAXB unmarshallling fail when runnin on WAS 7 (succeed on a standalone test)
JAXB unmarshallling fails when runnin on WAS 7 (succeed on a standalone test)
[21/11/12 16:47:55:690 CET] 00000025 DefaultMessag W org.springframework.jms.listener.AbstractMessageListenerContainer ...
3
votes
0answers
153 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 ...
3
votes
1answer
1k 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">
...
3
votes
1answer
867 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
2answers
1k 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 ...
