使用不正确的 url 验证 jdoconfig
我正在使用 jdo 并使用 jdoconfig.xml 配置持久性管理器
但是在任何地方我都可以找到有关 jdoconfig.xml 的文档,它指出 http://java.sun.com/xml/ns/jdo/jdoconfig 应该用于验证。
<jdoconfig xmlns="http://java.sun.com/xml/ns/jdo/jdoconfig"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://java.sun.com/xml/ns/jdo/jdoconfig">
etc
此 url 指向不存在的文件,并且我的 xml 验证器报告错误。 使用这个的目的是什么,我们是否可以相信 url 不会改变并且我们所有的 xml 文件突然停止验证?
有谁知道新网址吗?
I am using jdo and configuring the persistence manager with jdoconfig.xml
However everywhere I find documentation about jdoconfig.xml it states that http://java.sun.com/xml/ns/jdo/jdoconfig should be used for validation.
<jdoconfig xmlns="http://java.sun.com/xml/ns/jdo/jdoconfig"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://java.sun.com/xml/ns/jdo/jdoconfig">
etc
This url points to a nonexistent file and my xml validator reports an error.
What is the purpose of even using this, can we ever trust that the urls will not change and all our xml files all of a sudden stops validating?
Does anyone know the new url?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
xmlns 不是一个真正的文件/目录,更多的是一个命名空间,所以不应该存在!附加版本以获得真正的 XSD 文件,即 http://java.sun.com/xml/ ns/jdo/jdoconfig_3_0.xsd
也许
The xmlns is not a real file/directory, more a namespace, so ought not exist! The version is appended to get the real XSD file, namely http://java.sun.com/xml/ns/jdo/jdoconfig_3_0.xsd
Maybe
只需替换
为
Just replace
with
更改 jdoconfigile 以在下面使用对我有用。
Changing jdoconfigile to use below worked for me.
在 Eclipse 构建路径指向 Eclipse 插件 jar 时,当我清理(删除插件路径)我的构建路径时,我突然面临这个问题,所以我更改了 xmlns 路径,如下所示。
In eclipse build path is pointing to the eclipse plugin jars, when i clean(removed the plugin path) my build path , i am facing the issue suddenly so i changed the xmlns path like below it was worked.