ra9r
ra9r

Reputation: 4728

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 id="id-string-here">value-string-here</amenity>

Does anyone know what annotation to use on the value member variable to accomplish this? The closest I've gotten so far is:

@XmlRootElement
public class Amenity {
   @XmlAttribute
   public String id;
   @XmlElement
   public String value;
}

Unfortunately this approach doesn't allow me to specify that the value member variable should not be rendered as its own tag <value></value>.

Upvotes: 18

Views: 14586

Answers (4)

Bozho
Bozho

Reputation: 597124

This documentation writes:

Q. How can I cause the Marshaller to generate CDATA blocks?

A. This functionality is not available from JAXB directly, but you can configure an Apache Xerces-J XMLSerializer to produce CDATA blocks. Please review the JaxbCDATASample.java sample app for more detail.

(btw, this does not answer your particular question, but since the question title is misleading, and this is the first google result for jaxb CDATA, I'm answering a bit different question)

Upvotes: 1

jarnbjo
jarnbjo

Reputation: 34313

I'm not 100% sure about this, but try to use an @XmlValue annotation instead of @XmlElement.

Upvotes: 30

bdoughan
bdoughan

Reputation: 149017

It looks like the question was referring to text nodes not CDATA nodes, but here is a link on how EclipseLink JAXB (MOXy) handles CDATA:

Upvotes: 4

Wez
Wez

Reputation: 240

JAXB does not support marshaling/marshaling to/from CDATA xml types.

Upvotes: 0

Related Questions