14 lines
614 B
XML
14 lines
614 B
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|||
|
|
<web-app 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_4_0.xsd"
|
|||
|
|
version="4.0">
|
|||
|
|
|
|||
|
|
<welcome-file-list>
|
|||
|
|
<welcome-file>view/Login.jsp</welcome-file>
|
|||
|
|
</welcome-file-list>
|
|||
|
|
|
|||
|
|
<!-- 过滤器统一使用 @WebFilter 注解注册,不需要在 web.xml 中重复配置 -->
|
|||
|
|
<!-- 执行顺序由 @WebFilter 的 filter-name 字母顺序决定:A → E → EmployeePermission -->
|
|||
|
|
|
|||
|
|
</web-app>
|