web.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"
metadata-complete="true">
</web-app>
复制代码
如果想知道标签的含义,点此
有关 < url-pattern >
,匹配问题
- 精确路径匹配:/abc/test.do
- 部分路径结合通配符匹配:/abc/*
- 通配符匹配:/*
- 后缀名匹配:*.do
如果请求的url-partten中与多个请求匹配,那么优先级高低 :
精确路径匹配>部分路径结合通配符匹配>通配符匹配>后缀名匹配