dispatcherServlet
org.springframework.web.servlet.DispatcherServlet

contextConfigLocation
classpath:springMVC.xml

4


dispatcherServlet
/


HiddenHttpMethodFilter
org.springframework.web.filter.HiddenHttpMethodFilter



HiddenHttpMethodFilter
/*

关于SpringMVC中web.xml配置servlet和filter中url-pattern参数的_第1张图片
关于SpringMVC中web.xml配置servlet和filter中url-pattern参数的_第2张图片
照片中,一个是 /, 一个 /*
servlet中的"/"主要是访问controller中 RequestMapping的资源路径和/开头的页面路径
filter中的"/
"是只过滤所有的资源的路径,范围比“/”大,“/”只包括子路径,不包括孙以下的路径。而“/*”是包括子孙以下的路径。