Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to validate an XML against schema using JAXB?

I am working with XML and JAXB as I am unmarshalling and marshalling the XML into Java objects and vice versa. Now I am trying to validate our XML against our schema(test.xsd). Suppose if any required field is missing in my XML, then I would like to know which field is missing after validating the XML against schema test.xsd.

public void unmarshal(final InputStream is) {
    final XMLInputFactory factory = XMLInputFactory.newInstance();
    final XMLStreamReader reader = factory.createXMLStreamReader(is);

    Object req = unmarshaller.unmarshal(reader);

    // how would I validate here?
}

How would I validate my XML against test.xsd schema. My test.xsd schema path is -

C:\workspace\one\two\three\src\main\java\com\package\serv\ap\versionOne\test.xsd

UPDATE: loading test.xsd as:

Schema schema = factorySchema.newSchema(new File("C:\\workspace\\one\\two\\three\\src\\main\\java\\com\\package\\serv\\ap\\versionOne\\test.xsd"));
like image 477
AKIWEB Avatar asked Jul 15 '14 14:07

AKIWEB


People also ask

How does JAXB read XML?

To read XML, first get the JAXBContext . It is entry point to the JAXB API and provides methods to unmarshal, marshal and validate operations. Now get the Unmarshaller instance from JAXBContext . It's unmarshal() method unmarshal XML data from the specified XML and return the resulting content tree.


1 Answers

You just need to set an instance of javax.xml.validation.Schema on the Unmarshaller before you do the unmarshal. You can specify an implementation of ValidationEventHandler on the Unmarshaller to catch any problems that occur during the unmarshal process.

  • http://docs.oracle.com/javase/7/docs/api/javax/xml/bind/Unmarshaller.html#setSchema%28javax.xml.validation.Schema%29

For More Information

I have written more about this use case on my blog:

  • http://blog.bdoughan.com/2010/12/jaxb-and-marshalunmarshal-schema.html
like image 187
bdoughan Avatar answered Sep 17 '22 21:09

bdoughan