2013-03-28 82 views
1

我有一个映射我的静态资源与Spring的问题。我收到了404错误。我的servlet代码是如下Spring 3与Thymeleaf的静态资源映射

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

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

<!-- Enabling Spring MVC configuration through annotations --> 
<mvc:annotation-driven /> 

<!-- Mapping Static Resources --> 
<mvc:resources mapping="/css/**" location="/resources/css/" /> 
<mvc:resources mapping="/js/**" location="/resources/js/" /> 
<mvc:resources mapping="/images/**" location="/resources/images/" /> 
<mvc:resources mapping="/oldcss/**" location="/resources/oldResources/css/" /> 
<mvc:resources mapping="/oldjs/**" location="/resources/oldResources/js/" /> 
<mvc:resources mapping="/oldimages/**" location="/resources/oldResources/images/" /> 


<bean id="templateResolver" 
    class="org.thymeleaf.templateresolver.ServletContextTemplateResolver"> 
    <property name="prefix" value="/WEB-INF/views/" /> 
    <property name="suffix" value=".html" /> 
    <property name="templateMode" value="HTML5" /> 
</bean> 

<bean id="templateEngine" class="org.thymeleaf.spring3.SpringTemplateEngine"> 
    <property name="templateResolver" ref="templateResolver" /> 
</bean> 

<bean class="org.thymeleaf.spring3.view.ThymeleafViewResolver"> 
    <property name="templateEngine" ref="templateEngine" /> 
    <property name="order" value="1" /> 
</bean> 

我指的是静态对象作为 -

<link rel="stylesheet" type="text/css" href="../oldcss/reset.css" th:href="@{/oldcss/reset.css}"/> 
    <link rel="stylesheet" type="text/css" href="../oldcss/skeleton.css" th:href="@{/oldcss/skeleton.css}"/> 
    <link rel="stylesheet" type="text/css" href="../oldcss/style.css" th:href="@{/oldcss/style.css}"/> 
    <!-- Import JS --> 
    <script src="../oldjs/jquery.min.js" th:src="@{/oldjs/jquery.min.js}"></script> 
    <script src="../oldjs/responsiveslides.min.js" th:src="@{/oldjs/responsiveslides.min.js}"></script> 

谁能帮助我找到可能的问题?感谢提前:)

+0

你可以参考这个一个答案:http://stackoverflow.com/questions/14659142/spring-mvc-with-thymeleaf-update-static-data?rq = 1 –

+0

尝试禁用缓存 - 没有帮助:( – user1755645

回答

2

解决这个问题......不得不在servlet将映射更改为

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