gpt4 book ai didi

java - web.xml 中的 cvc-id.3 错误

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

我在 eclipse 中为 SpringMVC web 应用程序编辑 web.xml 文件时收到此错误消息:

cvc-id.3: A field of identity constraint 'web-app-servlet-name-uniqueness' matched element 'web-app', but this element does not have a simple type.

这是我的 web.xml 的一部分:

<?xml version="1.0" encoding="UTF-8" ?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">

<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>

错误点在 <servlet-name>dispatcher</servlet-name>声明。我应该怎么做才能解决它?提前谢谢你。

最佳答案

无意中发现把Java改成大写,错误就消失了:

xmlns="http://java.sun.com/xml/ns/javaee"

应该是:

xmlns="http://JAVA.sun.com/xml/ns/javaee"

关于java - web.xml 中的 cvc-id.3 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3219639/

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