DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
CSS Cache Buster With UrlRewriteFilter And Maven
UrlRewriteFilter rule to version your CSS files. Of course, you'll need to filter your urlrewrite.xml file to make this work.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE urlrewrite PUBLIC "-//tuckey.org//DTD UrlRewrite 3.0//EN"
"http://tuckey.org/res/dtds/urlrewrite3.0.dtd">
<urlrewrite use-query-string="true">
<rule>
<from>(.*).css$</from>
<to type="redirect" last="true">$1.css?v=${project.version}</to>
</rule>
</urlrewrite>






