如何使用 JAXB 根​​据模式验证 XML? [英] How to validate an XML against schema using JAXB?

查看:32
本文介绍了如何使用 JAXB 根​​据模式验证 XML?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 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:\workspace\one\two\three\src\main\java\com\package\serv\ap\versionOne\test.xsd

C:\workspace\one\two\three\src\main\java\com\package\serv\ap\versionOne\test.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.

了解更多信息

我在我的博客上写了更多关于这个用例的内容:

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

这篇关于如何使用 JAXB 根​​据模式验证 XML?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆