Spring WebContentInterceptor没有向标头添加cacheSeconds

我试图在
spring mvc中添加配置,以便我的静态内容如js,images将被浏览器缓存.我在dispatcher-servlet.xml中添加了以下内容

<beans>
.............
    <mvc:interceptors>
        <bean id="webContentInterceptor" class="org.springframework.web.servlet.mvc.WebContentInterceptor">
            <property name="cacheSeconds" value="31556926"/>
            <property name="useExpiresHeader" value="true"/>
            <property name="useCacheControlHeader" value="true"/>
            <property name="useCacheControlNoStore" value="true"/>
        </bean>
    </mvc:interceptors>
</beans>

但我仍然没有看到缓存已启用.我在浏览器调试器中看到以下内容,其中显示了Cache-Control:“no-cache”.

《Spring WebContentInterceptor没有向标头添加cacheSeconds》

请帮忙 !!!

最佳答案 您可以使用mvc:resources来缓存静态文件.

<mvc:resources mapping="/static/**" location="/public-resources/" 
       cache-period="31556926"/>
<mvc:annotation-driven/>
点赞