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

When processing a web service response with a quite complex XML structure, I am only interested with a very small subset of information. Lets consider the using JAXB has to be used in this context.

As an example, lets say I am only interested in retrieving d (which can be modeled as a single JAXB bean):

a
  b1
    c1
    c2
  b2
    d

What is the fastest recommended way to ignore everything else but retrieve d?

share|improve this question
I'm guessing that you can't use xpath, that you have to use jaxb, correct? – Hovercraft Full Of Eels Sep 20 '11 at 21:43
Yep, that's correct – ngeek Sep 21 '11 at 10:54

3 Answers

up vote 2 down vote accepted

Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB 2 (JSR-222) expert group.

There are a couple of different ways that you could handle this use case:

Option #1 - StreamFilter Any JAXB Implementation

You could use a StAX XMLStreamReader with a StreamFilter to filter out the portions of the XML document that you don't wish to map to:

Option #2 - @XmlPath in MOXy JAXB

You could use the @XmlPath extension in MOXy:

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class A {

    @XmlPath("b2/d/text()")
    private String d;

}

For More Information

share|improve this answer

I think the fastest way would depend on exactly how the xml is formatted. E.g. you could create your own InputStream that wraps the real InputStream and just be on the lookout for "<d>" to trigger you to start passing data through to jaxb.

e.g.

   InputStream is = // get real stream
   JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" );
   Unmarshaller u = jc.createUnmarshaller();
   Object o = u.unmarshal( new MySpecialStream(is) );

If you needed a more xml-like approach then you could create your own XMLStreamReader that only passed on certain calls if you were inside a d element.

e.g.

   JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" );
   Unmarshaller u = jc.createUnmarshaller();
   XMLStreamReader xsr = XMLInputFactory.newInstance().createXMLStreamReader( ... );
   Object o = u.unmarshal( new MyXSRWrapper(xsr) );
share|improve this answer
Your StAX approach can be implemented using a StreamFilter - stackoverflow.com/questions/7492128/… – Blaise Doughan Sep 21 '11 at 0:56

Use XPath to select the desired element as a DOM node and unmarshal using that selected node.

share|improve this answer
Sometimes it's a massive waste of time and space creating a DOM tree just for this. – biziclop Sep 20 '11 at 22:09
@biziclop So is premature optimization. What does 'fastest' refer to, development time or processing time, and what is more expensive? – forty-two Sep 20 '11 at 22:17
I don't know, but as I pointed out, DOM is often simply not an option. – biziclop Sep 21 '11 at 13:31

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.