XSD 验证错误:“cvc-elt.1:找不到元素“xs:schema”的声明”
我正在尝试使用 Maven XML 插件根据模式验证我的 xml,但我一直收到错误消息:
cvc-elt.1:找不到元素“xs:schema”的声明。
我想它必须处理我的名称空间声明,所以它们在这里:
在我的 XSD 中:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.myurl.com/schemas"
targetNamespace="http://www.myurl.com/schemas"
elementFormDefault="qualified" version="1.0">
在我的 XML 中:
<myTag xmlns="http://www.myurl.com/schemas">
这些声明有什么问题?我需要修改什么?
感谢您的帮助。
I am trying to use the Maven XML plugin to validate my xml against a schema but I keep having an error saying:
cvc-elt.1: Cannot find the declaration of element 'xs:schema'.
I guess it has to deal with my namespaces declaration, so here they are:
In my XSD:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.myurl.com/schemas"
targetNamespace="http://www.myurl.com/schemas"
elementFormDefault="qualified" version="1.0">
In my XML:
<myTag xmlns="http://www.myurl.com/schemas">
What is wrong with those declarations? What do I need to modify?
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 pom.xml
和目录文件 src/main/resources/xsd/catalog.xml 中
有关目录配置的更多信息,请参阅 Maven 插件目录
In your pom.xml
and in your catalog file src/main/resources/xsd/catalog.xml
For more information on catalog configuration see Maven Plugin Catalog