使用 SpringMVC 将所有 css 资源映射到单个文件夹
有没有办法映射所有 css 资源,以便它们都从 SpringMVC 的 /css 文件夹中提供? 前任。 /login/sampleUser/ie.css
映射到 /css/ie.css
我一直在尝试使用
,但似乎不起作用。
谢谢
Is there any way to map all css resources so that they are all served from /css folder from SpringMVC?
Ex. /login/sampleUser/ie.css
maps to /css/ie.css
I have been trying using <mvc:resources mapping="/css/**" location="/css/" >
, but seems not to work.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用Tuckey 网址重写过滤器。在那里您可以定义更复杂的重写规则。
You can be use the Tuckey Url Rewrite Filter. There you can define complexer rewrite rules.