如何使用 Spring Mvc 处理图像、*.css 等资源

发布于 2024-12-08 07:00:04 字数 205 浏览 0 评论 0原文

我在处理静态资源时遇到问题。 这是我的网络应用程序 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余生一个溪 2024-12-15 07:00:04

如果您使用的是 Spring 3.0.4 或更高版本,则可以使用 < mvc:resources ...> 元素位于应用程序配置中,并且您无需创建 Controller 来为您处理静态内容。

它就像指定静态内容的位置以及访问它们的路径一样简单:

<mvc:resources mapping="/resources/**" location="/public-resources/"/>

这使用找到的 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:

<mvc:resources mapping="/resources/**" location="/public-resources/"/>

This uses the mvc namespace found http://static.springsource.org/schema/mvc/spring-mvc.xsd.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文