Pessoal,
Estou tentando setar o max-age nos arquivos estáticos da seguinte forma:<!-- Cache images and style globally -->
<web:cache-control-filter name="imageCacheControlFilter"
regex-url-pattern=".*(\.gif|\.png|\.jpg|\.jpeg)" value="max-age=604800" />
<web:cache-control-filter name="textCacheControlFilter"
regex-url-pattern=".*(\.css|\.js)" value="max-age=604800" />
É uma aplicação Web com facelets, richfaces e seam.
Verificando as imagens, css e js da aplicação no firebug tenho o seguinte:Host localhost:8080
...
If-Modified-Since Mon, 07 Feb 2011 00:05:26 GMT
If-None-Match W/"951-1297037126989"
Cache-Control max-age=0
Por que não está setando o valor que configurei no components.xml?