标签:ref detail spring resource htm hand title pre att
1、配置对全部资源的放行
<mvc:default-servlet-handler/>
2、对指定目录下的资源放行
<mvc:resources location="/images/" mapping="/images/**"/> <mvc:resources location="/css/" mapping="/css/**"/> <mvc:resources location="/js/" mapping="/js/**"/>
3、
<servlet-mapping> <servlet-name>springmvc</servlet-name> <!-- 1. /* 拦截所有 jsp js png .css 2. *.action *.do 拦截以do action 结尾的请求 3. / 拦截所有 (不包括jsp) (包含.js .png.css) --> <url-pattern>*.do</url-pattern> </servlet-mapping>
参考:
1、关于springMVC中controller与静态资源不能同时访问的问题 https://blog.csdn.net/Young_Fee/article/details/79554237
2、<mvc: annotation-driven />的作用 https://www.cnblogs.com/afeng2010/p/10133797.html
标签:ref detail spring resource htm hand title pre att
原文地址:https://www.cnblogs.com/wylwyl/p/13278450.html