当前位置: 首页 > 知识库问答 >
问题:

cvc-complex-type.2.2:元素“location”不能有元素[childrens]

班玉堂
2023-03-14

这个错误出现在web.xml文件的错误页标记上:

cvc-complex-type.2.2:元素“location”不能有元素[childrens],

我的web.xml文件如下所示(未显示其他标记):

xmlns:xsi=“http://www.w3.org/2001/xmlSchema-instance”
xsi:schemalocation=“http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_3_0.xsd”版本=“3.0”>

<error-page>
    <error-code>404</error-code>
    <location>/pages/error/404.jsp</location>
</error-page>
 </web-app>

共有1个答案

戴靖
2023-03-14

修复:

Servlet3.0不支持这些错误页标记:

将Servlet版本更改为:version=“2.5”,并将schemaLocation更改为web.xml头中的web-app_2_5.xsd。

 类似资料: