谁能帮我?我正在使用 Apache Tomacat 10 在 Eclipse 2021-06 上创建一个新的动态 Web 项目。我总是在 web.xml 中收到错误
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.5"
xmlns="http://java.sun.com/xml/ns/j2ee"
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_2_4.xsd">
<display-name>01Test</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.5
我怎么解决???我尝试通过 Eclipse 下载 Tomcat 表单网站...使用 Web 模块 4 和 5...但仍然有这个问题...