关于spring mvc不拦截静态资源的配置

来源:互联网 发布:淘宝商家开通花呗 编辑:程序博客网 时间:2024/05/22 18:52

使用spring mvc框架管理控制层之后,发现之前的js插件,css样式或者图片都失效了,原因是在web配置文件中配置servlet时设置了拦截所有:
这里写图片描述

静态文件访问,主要是让DispatcherServlet不拦截以下静态资源:
(在springmvc的配置文件中配置)

<mvc:resources location="/image/" mapping="/image/**"/> <mvc:resources location="/css/" mapping="/css/**"/> <mvc:resources location="/js/" mapping="/js/**"/>

设置不拦截静态资源后spring_mvc.xml完整配置内容如下:

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xmlns:context="http://www.springframework.org/schema/context"    xmlns:mvc="http://www.springframework.org/schema/mvc"    xsi:schemaLocation="http://www.springframework.org/schema/beans                        http://www.springframework.org/schema/beans/spring-beans.xsd                        http://www.springframework.org/schema/context                        http://www.springframework.org/schema/context/spring-context.xsd                        http://www.springframework.org/schema/mvc                        http://www.springframework.org/schema/mvc/spring-mvc.xsd">     <mvc:annotation-driven></mvc:annotation-driven>     <context:component-scan base-package="com.oa.control"></context:component-scan>     //设置不拦截静态资源       <mvc:resources location="/image/" mapping="/image/**"/>         <mvc:resources location="/css/" mapping="/css/**"/>         <mvc:resources location="/js/" mapping="/js/**"/>    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">        <property name="prefix" value="/WEB-INF/jsp/"/>        <property name="suffix" value=".jsp"/>   </bean></beans>
0 0
原创粉丝点击