Spring webmvc加载静态资源

时间:2015-08-25 13:42:23

标签: java spring jsp java-ee tomcat7

我有以下项目结构:

myApp:
   -resources
       -css
       -js
       -others
   -Java resources
   -WebContent

如何从JSP中链接CSS文件? 我怎样才能获得其他文件夹的路径来保存文件? 我正在使用tomcat7。 我在配置文件中有这个

    <mvc:resources location="/resources/" mapping="/static/**"></mvc:resources> 

并尝试将文件引用为:

  <link href="${pageContext.request.contextPath}/static/css/something.css" rel="stylesheet">

只要我的WebContent文件夹中有我的资源文件夹,一切都很好,但似乎不是一个好习惯。 我试过了

getClass().getClassLoader().getResource(".").getPath()

用于保存文件,但它将我引导到我的tomcat文件夹,我不确定是否可以保存大文件

0 个答案:

没有答案