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

How to validate an XML against schema using JAXB?(如何使用 JAXB 针对模式验证 XML?)
本文介绍了如何使用 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: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

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

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How can create a producer using Spring Cloud Kafka Stream 3.1(如何使用Spring Cloud Kafka Stream 3.1创建制片人)
Insert a position in a linked list Java(在链接列表中插入位置Java)
Did I write this constructor properly?(我是否正确地编写了这个构造函数?)
Head value set to null but tail value still gets displayed(Head值设置为空,但仍显示Tail值)
printing nodes from a singly-linked list(打印单链接列表中的节点)
Control namespace prefixes in web services?(控制Web服务中的命名空间前缀?)