1
this gwt web說要放置一個像這樣的* .htaccess配置文件以避免緩存主要的JavaScript gwt應用程序。GWT * nocache *並在Jetty 7中部署應用程序
<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碼頭模塊)