XML Eclipse 中的 web-app 属性问题
XML Problem in Eclipse in web-app attribute
嘿,我正在使用 jdk 11 在 eclipse 中创建一个新的动态 web 项目。问题是它给我关于我的 web-app 属性的错误,顺便说一句,我已经尝试使用版本 2.4 和3.0 但都有相同的错误。
我的代码:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>Lasb5Exercise</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
2个错误涉及:
- cvc-attribute.3: 元素 'web-app' 上属性 'version' 的值 '2.5' 就其类型 'web-app-versionType'.
而言无效
- cvc-enumeration-valid:值“2.5”对于枚举“[2.4]”不是有效的。它必须是枚举中的值。
帮我解决这个问题!!! T.T
提前致谢。
应在 2021-12 年解决错误 574177。
嘿,我正在使用 jdk 11 在 eclipse 中创建一个新的动态 web 项目。问题是它给我关于我的 web-app 属性的错误,顺便说一句,我已经尝试使用版本 2.4 和3.0 但都有相同的错误。
我的代码:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>Lasb5Exercise</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
2个错误涉及:
- cvc-attribute.3: 元素 'web-app' 上属性 'version' 的值 '2.5' 就其类型 'web-app-versionType'. 而言无效
- cvc-enumeration-valid:值“2.5”对于枚举“[2.4]”不是有效的。它必须是枚举中的值。
帮我解决这个问题!!! T.T 提前致谢。
应在 2021-12 年解决错误 574177。