如何使用 Spring Mvc 处理图像、*.css 等资源
我在处理静态资源时遇到问题。 这是我的网络应用程序 Web应用程序根目录 -资源 -css -样式.css -伊马赫斯 -jsp -模板.jsp -安全的 -template_secure.jsp 所以 myLocation=resources
如何以集中方式处理资源,例如我将位置放入变量中并 在我尝试过的标签中使用这个
,但我不明白如何使用。
I've a problem with handle static resources.
It's my web-app
WebAppRoot
-resources
-css
-style.css
-imahes
-jsp
-template.jsp
-secure
-template_secure.jsp
so
myLocation=resources
How can I handle resource in a central way, for example I put location in a variable and
use this in tag
I tried with but I don't understand how have to use.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 Spring 3.0.4 或更高版本,则可以使用 < mvc:resources ...> 元素位于应用程序配置中,并且您无需创建
Controller
来为您处理静态内容。它就像指定静态内容的位置以及访问它们的路径一样简单:
这使用找到的 mvc 命名空间 http://static.springsource.org/schema/mvc/spring-mvc.xsd。
If you are using Spring 3.0.4 or later, you can use the < mvc:resources ...> element in your application configuration, and you will not need to create a
Controller
to handle static content for you.It is as simple as specifying the location of your static content, and the path from which to access them:
This uses the mvc namespace found http://static.springsource.org/schema/mvc/spring-mvc.xsd.