gpt4 book ai didi

xml - org.xml.sax.SAXParseExceptionpublicId : http://xmlns. jcp.org/xml/ns/persistence/persistence_2_1.xsd

转载 作者:行者123 更新时间:2023-12-05 02:11:58 32 4
gpt4 key购买 nike

执行时突然抛出错误:

org.xml.sax.SAXParseExceptionpublicId: 
http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd; lineNumber:
1; columnNumber: 1; Deployment descriptor file META-INF/persistence.xml
in archive [classes]. Premature end of file.



curl -v http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd
* Trying 2600:1402:f000:392::f6b...
* TCP_NODELAY set
* Connected to xmlns.jcp.org (2600:1402:f000:392::f6b) port 80 (#0)
> GET /xml/ns/persistence/persistence_2_1.xsd HTTP/1.1
> Host: xmlns.jcp.org
> User-Agent: curl/7.54.0
> Accept: */*
>
< HTTP/1.1 301 Moved Permanently
< Server: AkamaiGHost
< Content-Length: 0
< Location: https://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd
< Cache-Control: max-age=0
< Expires: Sun, 23 Jun 2019 23:21:20 GMT
< Date: Sun, 23 Jun 2019 23:21:20 GMT
< Connection: keep-alive
<
* Connection #0 to host xmlns.jcp.org left intact

直到今天这才成为问题,并且该文件似乎不再可用,但它是 JPA 持久性 xml 文件的标准引用:

HTTP/1.1 301 Moved Permanently

有没有其他人突然遇到这个问题。我无法追踪到任何更改,我在本地和服务器上都遇到过这种情况。

最佳答案

问题的根源似乎在于 Oracle 和对安全性的担忧,促使最近切换到 HTTPS 协议(protocol)。
org.apache.openjpa.lib.meta 中的 XMLMetaDataParser 在 parseNewResource 方法中使用 SaxParser 读取 xml 文件,这会引发文件过早结束错误。错误文本不是特别有用。然而,求助于 XML Copy Editor [ http://xml-copy-editor.sourceforge.net]验证模式揭示了实际涉及的错误:
第 0 行第 0 列的 fatal error :URL 中不支持的协议(protocol)。这些信息最终让我看到了这篇涉及 OpenEdge 的帖子,日期为 11/6/2018: [ https://knowledgebase.progress.com/articles/Article/Unsupported-protocol-in-URL-reading-XML-from-a-URI] .
在原因下,它指出,“以前用于 HTTP 的 URL 现在正在重定向到 HTTPS。”
在解决方案下,“这是 OpenEdge 客户端在内部使用的 Apache Xerces 解析器中的一个限制。它只支持有限的 URL,因此解析器无法处理 URL 重定向或类似于网络浏览器的 HTTPS URL。”< br/>因此,错误消息中标识为“systemId”的 xml 文本的重要部分是 http 协议(protocol)语句,现在在 Oracle 的网站上重定向到 https,导致解析错误。这就解释了为什么一天运行良好的代码在第二天早上突然停止工作。应该很快就会知道有多少 ORM 实现具有此限制。

问题解决了。我换了
https://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd

https://www.oracle.com/webfolder/technetwork/jsc/xml/ns/persistence/persistence_2_1.xsd
程序现在可以正常构建。

关于xml - org.xml.sax.SAXParseExceptionpublicId : http://xmlns. jcp.org/xml/ns/persistence/persistence_2_1.xsd,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56728487/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com