其他分享
首页 > 其他分享> > Spring WebContentInterceptor没有向标头添加cacheSeconds

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”.

Firefox Debugger

请帮忙 !!!

解决方法:

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

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

标签:spring-mvc,spring,spring-security,cache-control
来源: https://codeday.me/bug/20190706/1398377.html