gpt4 book ai didi

java - 使用 Spring MVC、Tomcat 应用程序为静态资源启用浏览器缓存

转载 作者:行者123 更新时间:2023-11-28 22:11:49 34 4
gpt4 key购买 nike

我在我的应用程序中使用 Tomcat-7、Spring-4、Hibernate-4。我已经尝试了两种使 缓存 工作的方法,但当我使用 gtmetrix 检查时,它们似乎不起作用。

方法 1 使用 .htaccess 文件:

<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType application/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 2 days"
</IfModule>

方法 2 使用 Spring MVC xml 配置 mvc:interceptors :

<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/resources/*"/>
<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:interceptor>
</mvc:interceptors>


我可以使用哪些其他方法与 Tomcat、Spring-MVC 一起使用来使 浏览器缓存 工作?
请分享您的经验。

最佳答案

另一种方法是这样的:

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

关于java - 使用 Spring MVC、Tomcat 应用程序为静态资源启用浏览器缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33538686/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com