1

有没有办法映射所有 css 资源,以便它们都从 SpringMVC 的 /css 文件夹中提供服务?前任。/login/sampleUser/ie.css映射到/css/ie.css

我一直在尝试使用<mvc:resources mapping="/css/**" location="/css/" >,但似乎不起作用。

谢谢

4

1 回答 1

2

您可以使用Tuckey Url Rewrite Filter。在那里您可以定义更复杂的重写规则。

 <!-- I do not know if this fiter works (correctly), but it should
      demonstrate how it works-->
 <rule>
    <!-- redirect everything that ends with .css
         to resources, with same file name -->
    <from>/(.*)/$.css</from>
    <to type="redirect">/resouces/$1</to>
 </rule>
于 2011-05-06T15:17:56.697 回答