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", ...
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
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
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
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
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
41 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
1answer
92 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
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
173 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
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
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
758 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 ...
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
204 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 ...
1
vote
1answer
247 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 ...
1
vote
1answer
57 views
unmarshalling complex types with Jaxb2
Hi I have following XML and java classes when I unmarshall using JAXB2 processor using Spring OXM framework I am getting all null values. Any idea?
import javax.xml.bind.annotation.XmlElement;
...
1
vote
1answer
241 views
XML without root element in JAXB
I was wondering whether there is a way to create an object such that a list of such object does not need a root element. For example, if I wanted to create an XML like
<Dogs>
...
1
vote
1answer
94 views
@XmlElementWrapper generates a NullPointerException
hi all
I am trying to represent the following xml code:
<AggregationMeta>
<AggregationLink>
<LocalName>stuff</LocalName>
...
1
vote
1answer
273 views
create nested structure using JAXB notations
<?xml version='1.0'?>
<info>
<contract>
<symbol>IBM</symbol>
<sectype>STK</sectype>
<exchange>SMART</exchange>
...
1
vote
2answers
2k views
Jaxb 2.0 Schema validation problem
I am working with Jaxb 2.x and was trying to validate XML document with the given XSD using the following tutorial
Tutorial Link
hers is the code i have written
unmarshaller.setSchema(schema);
...
1
vote
2answers
516 views
Java xml serialization null handling
I am using JAXB2 to serialize object to xml.
Is there any way how to force it to create entire object structure like in following example even if it is not filled in backing object?
This is my ...
1
vote
1answer
233 views
Can you add comments to a “jaxb.index” file?
Has anybody found any documentation on comments in jaxb.index files? I've searched the web, but couldn't find any information.
Using "# comment" style lines does work, but is this actually specified ...
1
vote
1answer
173 views
Jaxb 2 mapping different element to the same property
I wonder if this is possible in jaxb2. I have a xml that can be either < element > or < element2 > it will never apear at the some time. They are both of type String and I want it to map to the ...
1
vote
0answers
680 views
JAXB lists namespaces in root element (-> each element)
By default, jaxb 2 lists all (all possible required) namespaces in root element during marshalling:
Is there a way to describe namespace in each element instead of root element ?:
...
0
votes
0answers
22 views
Using jersey client API to read from handcrafted XML
I'm trying to use the jersey client API and JAXB bindings to receive XML data from a third-party REST service. The XML the service returns is somewhat less than perfect:
looks like there's no ...
0
votes
0answers
60 views
XML parsing in JAVA with JAXB Annotations
I need following Kind of XML in result from a JAVA class using JAXB annotation(like @XmlElement , @XmlAttribute etc.)
Following is the XML result that i want...
<?xml version="1.0" ?>
...
0
votes
0answers
61 views
JAXB: XmlJavaTypeAdapter with XmlElementRef (type=JAXBElement)
The question is related to JAXB 2.1.10 in JDK 6
From yesterday, I am tring to figure out the way to define an @XmlJavaTypeAdapter together with XmlElementRef on a field.
From the net, I have got ...
0
votes
0answers
56 views
How to change/map predefined namespaces(xmlns:ns1) JAXB produced with the new prefix?
I used JAXB to generate the Java classes and I can generate a clear XML file with marshalling.
I'd like to change predefined namespaces with the new prefix (for my case, "cvd"). How can I map this ...
0
votes
1answer
146 views
JAXB2 map xsd:restrictions as subclasses and (un)marshall xsi:types
I have been doing a lot of research trying to figure this out, but am
still unsuccessful.
I have a number of XSD that follow this schema:
Simple_Identification.xsd
<xsd:schema ...
0
votes
3answers
552 views
JAXB 2.0 Validation not working
i am working on JAXB 2.0 and currently struck on the validation part as its not working as expected.
below is the validation code
public void validateXMLToSchema(Unmarshaller ummarshaller,String ...