2017-08-06 164 views
0

我試圖通過使用標籤來獲取靜態資源放入我的web應用程序,但它不起作用。 我的beans.xml春天mvc:資源標籤

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

<context:component-scan base-package="controller" /> 

<bean 
    class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
    <property name="prefix"> 
     <value>/WEB-INF/views/</value> 
    </property> 
    <property name="suffix"> 
     <value>.jsp</value> 
    </property> 
</bean> 

<mvc:resources mapping="/resources/**" location="/resources/" /> 
<mvc:annotation-driven /> 

我的JSP文件

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 
<spring:url value="/resources/style.css" var="styleCss" /> 
<link rel="stylesheet" href='<c:url value="/resources/style.css"/>' /> 

我的文件結構:

enter image description here

我已經嘗試了很多方法,但他們都沒有按沒有工作。

請幫幫我。 非常感謝

回答

0

試試這個:

<mvc:resources mapping="/resources/**" location="/WEB-INF/resources/" /> 

,因爲你已經保持了WEB-INF內的資源,你需要包括在資源路徑。