標籤:pattern off class art pat tin def res 資源
方案一、攔截器中增加針對靜態資源不進行過濾(涉及spring-mvc.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-mapping path="/**/*.gif"/> <mvc:exclude-mapping path="/**/*.jpg"/> <mvc:exclude-mapping path="/**/*.jpeg"/> <mvc:exclude-mapping path="/**/*login*"/> <mvc:exclude-mapping path="/**/*Login*"/> <bean class="com.luwei.console.mg.interceptor.VisitInterceptor"></bean> </mvc:interceptor></mvc:interceptors>
方案二、使用預設的靜態資源處理Servlet處理靜態資源(涉及spring-mvc.xml, web.xml)
在spring-mvc.xml中啟用預設Servlet
1 <mvc:default-servlet-handler/>
在web.xml中增加對靜態資源的處理
<servlet-mapping> <servlet-name>default</servlet-name> <url-pattern>*.js</url-pattern> <url-pattern>*.css</url-pattern> <url-pattern>/assets/*"</url-pattern> <url-pattern>/images/*</url-pattern> </servlet-mapping>
* 但是當前的設定必須在Spring的Dispatcher的前面
方案三、修改Spring的全域攔截設定為*.do的攔截(涉及web.xml)
<servlet> <servlet-name>SpringMVC</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring-mvc.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> <async-supported>true</async-supported></servlet><servlet-mapping> <servlet-name>SpringMVC</servlet-name> <url-pattern>*.action</url-pattern></servlet-mapping>
這樣設定,Spring就會只針對以‘.do‘結尾的請求進行處理,不再維護靜態資源
針對這三種方案的優劣分析:
第一種方案配置比較臃腫,多個攔截器時增加檔案行數,不推薦使用;
第二種方案使用預設的Servlet進行資源檔的訪問,Spring攔截所有請求,然後再將資源檔交由預設的Sevlet進行處理,效能上少有損耗;
第三種方案Spring只是處理以‘.action‘結尾的訪問,效能上更加高效,但是再訪問路徑上必須都以‘.action‘結尾,URL不太文雅;
綜上所述,推薦使用第二和第三種方案
在SpringMVC3.0之後推薦使用:
<mvc:resources location="/WEB-INF/html/" mapping="/**/*.html"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.ico"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.js"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.css"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.png"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.gif"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.jpg"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.ttf"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.woff"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.woff2"/>
在JSP中常見問題,防止SpringMVC攔截器攔截js等靜態資源檔案的解決方案