1

这个 gwt web中说要放置一个这样的 *.htaccess 配置文件以避免缓存主要的 javascript gwt 应用程序。

<Files *.nocache.*>
  ExpiresActive on
  ExpiresDefault "now"
  Header merge Cache-Control "public, max-age=0, must-revalidate"
</Files>

<Files *.cache.*>
  ExpiresActive on
  ExpiresDefault "now plus 1 year"
</Files>

有没有办法对 Jetty 做同样的事情?(无需使用 httpd jetty 模块)

4

1 回答 1

0

这个答案显示了如何为 Jetty 提供的所有文件禁用/启用缓存:

如何防止在嵌入式 Jetty 实例中缓存静态文件?

我认为要为单个文件(例如nocache )设置自定义缓存设置,必须使用过滤器并在 HttpResponseObject 中为匹配请求 URI 的文件手动设置标题,如下所述:

用于浏览器缓存的 Servlet 过滤器?

于 2012-08-01T22:20:49.267 回答