@WebServlet 此注解是Web Servlet 3.0 的新功能
所以Web.xml version 3.0以下 的此功能是不生效的。
demo 如下即可正常工作:
所以Web.xml version 3.0以下 的此功能是不生效的。
demo 如下即可正常工作:
<?xml version="1.0" encoding="UTF-8"?>
<web-app
version="3.1"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>