今天在我编写在页面使用ajax异步刷新技术发送请求到控制器并且传值回来弹出到页面上的小功能完成并运行的时候他竟然没有反应到了后来我才发现是我的jquery的js文件入引失败,当我搜索了大量的资料以后发现了两种设置静态拦截的方法:
方法一:在spring-mvc-servlet.xml拦截器中增加针对静态资源不进行过滤:
<mvc:resources location="/" mapping="/**/*.js"/>
<mvc:resources location="/" mapping="/**/*.css"/>
<mvc:resources location="/assets/" mapping="/assets/**/*"/>
<mvc:resources location="/images/" mapping="/images/*" cache-period="360000"/>
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**/*"/>
<mvc:exclude-mapping path="/**/fonts/*"/>
<mvc:exclude-mapping path="/**/*.css"/>
<mvc:exclude-mapping path="/**/*.js"/>
<mvc:exclude-mapping path="/**/*.png"/>
<mvc:exclude-mapp