如何使用 JAXB 针对模式验证 XML?

2022-01-09 00:00:00 xml xsd java jaxb unmarshalling

我正在使用 XMLJAXB,因为我正在将 XML 解组和编组为 Java 对象,反之亦然.现在我正在尝试根据我们的模式(test.xsd)验证我们的 XML.假设如果我的 XML 中缺少任何必填字段,那么我想知道在根据模式 test.xsd 验证 XML 之后缺少哪个字段.

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?
}

我将如何根据 test.xsd 架构验证我的 XML.我的 test.xsd 架构路径是 -

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

C:workspaceone wo hreesrcmainjavacompackageservapversionOne est.xsd

C:workspaceone wo hreesrcmainjavacompackageservapversionOne est.xsd

更新:将 test.xsd 加载为:

Schema schema = factorySchema.newSchema(new File("C:\workspace\one\two\three\src\main\java\com\package\serv\ap\versionOne\test.xsd"));

推荐答案

你只需要设置一个javax.xml.validation.Schema 在执行解组之前在 Unmarshaller 上.您可以在 Unmarshaller 上指定 ValidationEventHandler 的实现,以捕获解组过程中发生的任何问题.

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

更多信息

我已经在我的博客上写了更多关于这个用例的文章:

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

  • http://blog.bdoughan.com/2010/12/jaxb-and-marshalunmarshal-schema.html

相关文章