有没有办法映射所有 css 资源,以便它们都从 SpringMVC 的 /css 文件夹中提供服务?前任。/login/sampleUser/ie.css
映射到/css/ie.css
我一直在尝试使用<mvc:resources mapping="/css/**" location="/css/" >
,但似乎不起作用。
谢谢
有没有办法映射所有 css 资源,以便它们都从 SpringMVC 的 /css 文件夹中提供服务?前任。/login/sampleUser/ie.css
映射到/css/ie.css
我一直在尝试使用<mvc:resources mapping="/css/**" location="/css/" >
,但似乎不起作用。
谢谢
您可以使用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>