zoukankan      html  css  js  c++  java
  • SpringMVC 拦截器(interceptors)对样式(css),JavaScript(js),图片(images)链接的拦截

    因为在web.xml配置了

    <servlet-mapping>
    		<servlet-name>appServlet</servlet-name>
    		<url-pattern>/</url-pattern>
    </servlet-mapping>
    

    导致对所有连接都会经DispatcherServlet,所以静态资源如css,js,images都会被过滤到,从而导致页面没法渲染成功。

    不过,我们可以在主配置文件中,添加<mvc:resources location="">,从而能够使得静态资源不会经过DispatcherServlet,就可以成功渲染页面了。

          <!-- 处理静态资源的请求 -->
    	<mvc:resources location="/WEB-INF/views/css/" mapping="/css/**" />
    	<mvc:resources location="/WEB-INF/views/js/" mapping="/js/**" />
    	<mvc:resources location="/images/" mapping="/images/**" />
    

    然而,SpringMVC还有拦截器的机制(如果你没用拦截器,那么就不会有问题),反而就把我们静态资源的请求链接也给拦截了,

    通过我在拦截器里输出看到了,确实会把静态资源的请求链接也拦截到了,所以我页面就会产生如下错误:

    Resource interpreted as Stylesheet but transferred with MIME type text/html: 

    我还是没找到其他原因,所以就在拦截器上把静态资源的链接给过滤了,然后就没产生上面的问题了。

    虽然在其他页面倒是没有产生上面的问题,不过把静态资源的链接过滤了,应该也不会产生什么影响。

    <mvc:interceptors>
    		<mvc:interceptor>
    			<mvc:mapping path="/**"/> <!-- 因为我对所有链接都拦截,所以静态资源的链接也被拦截了 -->
    			<mvc:exclude-mapping path="/js/**"/>
    			<mvc:exclude-mapping path="/css/**"/>
    			<mvc:exclude-mapping path="/images/**"/>
    			<bean class="com.databasegroup.interceptor.AuthInterceptor"></bean>
    		</mvc:interceptor>
    </mvc:interceptors>
    

      

      

  • 相关阅读:
    Spark Application的调度算法
    spark 问题
    读取hdfs文件之后repartition 避免数据倾斜
    生成树
    Curator Cache
    Curator leader 选举(一)
    Spark ZooKeeper数据恢复
    Curator 异步获取结果
    spark shuffle 相关细节整理
    matlab 求解线性方程组之LU分解
  • 原文地址:https://www.cnblogs.com/sevenun/p/6064993.html
Copyright © 2011-2022 走看看