gpt4 book ai didi

java - 在 Websphere AS 中禁用针对 http ://java. sun.com/xml/ns/javaee/web-app_2_5.xsd 的 XSD 验证

转载 作者:行者123 更新时间:2023-11-30 11:50:55 24 4
gpt4 key购买 nike

我在 Webshepere AS 6.1 中使用 web.xml 部署一个 .war:

xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"

但它错误

This site is experiencing technical difficulty. We are aware of the issue and are working as quick as possible to correct the issue.

我怎样才能避免这种情况?如何在 Websphere AS 中禁用针对外部 XSD 的验证?

最佳答案

WebSphere AS 6.1 是一个 J2EE 1.4 platform ;这意味着 Servlet 2.4。服务器不支持正在安装的应用程序版本。

正确的声明应该是这样的:

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="WebApp_ID" version="2.4"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
>

您需要 WebSphere AS 7 以支持 Java EE 5 和 Servlet 2.5。

关于java - 在 Websphere AS 中禁用针对 http ://java. sun.com/xml/ns/javaee/web-app_2_5.xsd 的 XSD 验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7714391/

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