Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use JAXB to unmarshal the following into a 'Tag' object. This is how the client passes the results to me -

<Tag type="a">
    <![CDATA[html text here]]>
</Tag>

Note that CDATA is wrapped directly inside 'Tag' which has an attribute 'type' to it.

My class is as follows:

@XmlRootElement(name = "Tag")
public class Tag {

private String type;
private String tag;

public String getTag() {
    return tag;
}

@XmlCDATA
public void setTag(String tag) {
    this.tag = tag;
}

public String getType() {
    return type;
}

@XmlAttribute
public void setType(String type) {
    this.type = type;
}

}

I dont think this is the right way, and as expected when I unmarshall, the Tag object is populated with 'type' but the CDATA value does not get populated into 'tag'.

Any idea?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can add the @XmlValue annotation to the tag property.

share|improve this answer
awesome! that did it! (huh, such a simple solution) – hese Sep 26 '12 at 21:58
1  
and i called it tricky :) – hese Sep 26 '12 at 21:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.