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

Our Java application receives XML messages from a number of external systems and from these we want to create domain objects. We do not have schemas for these documents.

Currently we are are using XPaths to pull out strings from the XML and then calling setters on the new domain object. We use a home-baked XmlUtils class to do this.

foo.setBar(XmlUtils.number("/bar", document));

What alternative Java-based approaches are there, which do not require access to the document's schema?

share|improve this question
1  
Why do you need a schema to use XPath? – Jim Deville Jul 13 '11 at 7:28
I don't. The question is, what alternatives are there to using a bunch of XPaths? – Paul McKenzie Jul 13 '11 at 7:29
XPath is pretty efficient ... not sure why you would an alternative to it ... i guess you could go back to basics and crawl the xml structure yourself. If you were in a .net environment you could use linq but i'm not sure that exists in java (woohoo +1 to C#) – Wardy Jul 13 '11 at 7:35
XPath is generally not particularly efficient compared to data binding, since use of XPath usually requires building of full in-memory dom tree. Data binding libs can use streaming (incremental) parsers, and Java POJOs are much lighter objects than dom elements. So go JAXB, which predates C# :) – StaxMan Jul 13 '11 at 21:34
1  
... except of course MOXy which looks great, and can do XPath subset without materializing tree. double plus good. :) – StaxMan Jul 13 '11 at 21:35

5 Answers

up vote 5 down vote accepted

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

MOXy offers the @XmlPath extension which enables you to do XPath based mapping:

Path Based Mapping

Match the bar element under the foo element:

@XmlPath("foo/bar/text()")
public int getBar() {
    return bar;
}

Position Based Mapping

Match the second bar element:

@XmlPath("bar[2]/text()")
public int getBar() {
    return bar;
}

Predicate Based Mapping

Match the bar element that has a type attribute with value foo:

@XmlPath("bar[@type='foo']/text()")
public int getBar() {
    return bar;
}

Combined

All of the above concepts can be used together:

@XmlPath("foo[2]/bar[@type='foo']/text()")
public int getBar() {
    return bar;
}

For More Information

share|improve this answer

I recommend using Apache Commons Digester for this. The usage pattern is something like this:

digester.addObjectCreate("parent", Parent.class);
digester.addObjectCreate("parent/child", Child.class);
digester.addCallMethod("parent/child", "setName", 1);
digester.addCallParam("parent/child/name", 0);
digester.addSetNext("parent/child", "addChild");

Also if you already have domain objects with structure similar to source xml, you can try to annotate it manually to unmarshal with JAXB.

share|improve this answer
We tried this, but it didn't allow custom XPath queries - could only get the text content of a tag element – Paul McKenzie Jul 13 '11 at 8:08
Right, XPath is not allowed. But you still can use wildcards in pattern and implement custom rules. Can you give some sample where you need complex xpath? – JustYo Jul 13 '11 at 8:32

Simple framework. I never used it but some time ago I took a look at the documentation and examples and it might be worth a closer look. Its job is Java bean serialization/deserialization to/from XML using annotated bean.

share|improve this answer

I would go either with MOXy that was recommend, or JAXB (javax.xml.bind, bundled with JDK 6, available separately for JDK 5).

Use of "manual" XPath is rather inefficient, error prone; data binding is usually the way to go if you really don't care about XML per se, just data an XML document contains. This is a big difference (data- vs document-oriented XML), and quite often XPath is much more useful for document-oriented use cases.

share|improve this answer

Digester mentioned by @JustYo is perfect. But I'd add some tip: take a look on class DigetserDigester. It allows mapping classes to XML without writing code at all. It is done using other XML document. Very cool.

Other possibility is JAXB. it is annotation based and is 2 directional. The only possible problem that could be that it is sometimes hard to map any class to any xml schema. But if you can change at least one of them (classes of XML) or better both I'd recommend you to use JAXB.

share|improve this answer

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.