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

My application receives a very lengthy XML document, and I would like to use it to populate a Java object.

However, while there are tons of deeply-nested elements in the XML, I am only interested in a handful of them. I am also only interested in going from XML-to-Java. I do not need the capability of marshalling my Java object back into XML.

I would like to use JAXB for this if possible, since my application's dependencies already include Eclipselink MOXy anyway. However, I'm not sure how to grab only a handful of deeply nested element values. I looked at the @XmlElementWrapper annotation, and thought about using it to annotate my Java class fields like this:

...
@XmlElementWrapper(name="LEVEL_1/SUBLEVEL_1/YET_ANOTHER_SUBLEVEL")
@XmlElement(name="STATUS")
private String statusCode;
...

However, I don't know if that name attribute is valid. I don't get that far anyway... the compiler tells me that @XmlElementWrapper can only be used when the member variable is a Collection type. Most of the fields I'm trying to pull are single values.

I tried skipping the @XmlElementWrapper annotation, and seeing if @XmlElement alone would understand XPath values:

...
@XmlElement(name="LEVEL_1/SUBLEVEL_1/YET_ANOTHER_SUBLEVEL/STATUS")
private String statusCode;
...

While this doesn't cause a compile error, it doesn't work either. At runtime, Eclipselink simply instantiates my object with a null in this field.

Is there something I am missing, or is what I'm trying to do even possible with JAXB at all?

share|improve this question

1 Answer

up vote 1 down vote accepted

This can be done with EclipseLink JAXB (MOXy) using the @XmlPath extension.

@XmlPath("LEVEL_1/SUBLEVEL_1/YET_ANOTHER_SUBLEVEL/STATUS/text()")
private String statusCode;

For More Information

share|improve this answer
1  
Thanks! You might want to edit this code snippet, though. It turns out that the @XmlPath path annotation just accepts a path string... there is no "name=" prefix. – Steve Perkins Aug 17 '12 at 19:20
@StevePerkins - Nice catch, I have fixed the snippet. – Blaise Doughan Aug 17 '12 at 19:22

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.