springMVC配置靜態資源訪問的標籤的使用

在springmvc中,爲了引用資源的訪問不會相似Controller同樣被攔截,區分出關注的資源的訪問,通常咱們在springMVC裏面的攔截都會配置爲"/",攔截全部的。可是這會攔截全部的請求,包括靜態資源,這會致使靜態資源的加載失敗,好比頁面上某個圖片加載不出來等。這時候可使用springmvc的<mvc:resources>標籤,進行靜態資源訪問的設置。javascript

spring mvc 的<mvc;resources mapping="***" location="***">標籤是在spring3.0.4出現的,主要是用來進行靜態資源的訪問。在spring3.0.4出來的時候 spring尚未更新其schema因此在配置文件中有可能找不到<mvc:resources >標籤,這個問題在spring3.0.5中已經解決,並且網上也有不少其餘的解決方案,我在這裏就不記錄了。css

下面來講明用法:java

首先使用spring mvc須要配置其使用的servlet.在web.xml中:web

<servlet>
    <servlet-name>springMVC</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>

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

這裏給 servlet-name定義的名稱是springMVC,這樣的話會在web-inf下spring會自動掃描一個XML文件名叫springMVC- servlet.xml文件,這裏都是spring自動掃描的,若是你沒有提供,將會報一個文件查找不到的異常。看了下 org.springframework.web.servlet.DispatcherServlet加載這個文件的過程,這個文件存放的地址也是能夠進行設置的,具體在這裏不探究這個。spring

因爲spring mvc攔截了全部請求,因此當你設置以下攔截全部請求的時候會影響到靜態資源文件的獲取,這樣就須要有這個標籤來幫你分類完成獲取靜態資源的責任。spring-mvc

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

springMVC-servlet.xml文件mvc

<?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:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd   
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">   

    <mvc:resources mapping="/javascript/**" location="/static_resources/javascript/"/>
    <mvc:resources mapping="/styles/**" location="/static_resources/css/"/>
    <mvc:resources mapping="/images/**" location="/static_resources/images/"/>
    <mvc:default-servlet-handler />
    
    
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

</beans>

這裏能夠看到我全部的頁面引用到/styles/**的資源都從/static_resources/css裏面進行查找。固然若是styles前面還有別的路徑的話能夠繼續設置別的路徑,若是路徑有不少層級,則能夠這樣設置匹配路徑:**/styles/**,這會使全部包含有styles的請求都被看成靜態資源來處理。app

頁面的一段靜態資源訪問的代碼以下所示:jsp

<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%>
<HTML>
<HEAD>
  <TITLE> ABCDEFG </TITLE>
<link type="text/css" rel="stylesheet" href="<c:url value='/styles/siteboard.css'/>">
...
...
...

這個標籤的真諦就是爲了引用資源的訪問不會相似Controller同樣被攔截,區分出關注的資源的訪問,通常咱們在springMVC裏面的攔截都會配置爲"/",攔截全部的。url

相關文章
相關標籤/搜索