码迷,mamicode.com
首页 > 编程语言 > 详细

Spring MVC静态资源放行

时间:2020-07-10 13:34:14      阅读:74      评论:0      收藏:0      [点我收藏+]

标签: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

Spring MVC静态资源放行

标签:ref   detail   spring   resource   htm   hand   title   pre   att   

原文地址:https://www.cnblogs.com/wylwyl/p/13278450.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!