2

Spring MVC アプリケーションで変更されない静的 HTML ファイルをキャッシュするように cacheMappings プロパティをセットアップしました。

<beans:bean id="webContentInterceptor" class="org.springframework.web.servlet.mvc.WebContentInterceptor">
<beansroperty name="cacheSeconds" value="0"/>
<beansroperty name="useExpiresHeader" value="true"/>
<beansroperty name="useCacheControlHeader" value="true"/>
<beansroperty name="useCacheControlNoStore" value="true"/>
<beansroperty name="cacheMappings">
    <beansrops>
        <beansrop key="/foo/**/*.html">31556926</beansrop>
    </beansrops>
</beansroperty>

非常に長いキャッシュ期間を設定する以外に、この特定のディレクトリ内の HTML ファイルを期限切れにしないように指示するより良い方法はありますか?

4

1 に答える 1