如何在Spring应用程序中映射静态资产?

时间:2011-07-06 13:29:42

标签: java spring spring-mvc

我正在使用Spring 3.0.5。我将所有静态资产放在我的web-app根目录中名为“static”的文件夹中(与WEB-INF处于同一级别)。如何将“http://mydomain.com/context-path/static/some-asset”形式的网址映射到我的“静态”文件夹?

由于我有一个映射到根上下文的视图解析器(来自我的web.xml),这很复杂...

 <!-- Declare a Spring MVC DispatcherServlet as usual -->  
 <servlet>  
     <servlet-name>dispatcher</servlet-name>  
     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>  
     <!-- Configure DispatcherServlet to use AnnotationConfigWebApplicationContext  
        instead of the default XmlWebApplicationContext -->  
     <init-param>  
         <param-name>contextClass</param-name>  
         <param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value>  
     </init-param>  
     <load-on-startup>1</load-on-startup>  
 </servlet>  

 <servlet-mapping>  
     <servlet-name>dispatcher</servlet-name>  
     <url-pattern>/</url-pattern>  
 </servlet-mapping>

好的,谢谢你的帮助, - 戴夫

PS - 添加mvc:资源似乎没有治愈痛苦。我添加到了我的parentContext.xml文件...

<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans 
            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
            http://www.springframework.org/schema/mvc
            http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

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

但后来得到了异常,“SEVERE:servlet调度程序的Servlet.service()引发了异常 javax.servlet.ServletException:没有适用于处理程序的适配器[com.myco.systems.leadsmonitor.web.controller.HomeController@6870c52d]:当我访问我的主页“/”时,您的处理程序是否实现了受支持的接口,如Controller?“ / p>

2 个答案:

答案 0 :(得分:4)

最好的选择是使用<mvc:resources />

答案 1 :(得分:4)

除了使用<mvc:resources />之外,请确保在同一个文件中包含此行:

<mvc:annotation-driven />

我不知道为什么会这样,但是当你使用<mvc:resources />时,它会禁用MVC机制中一些非常重要的部分 - 尊重你的Controller和我相信的RequestMapping注释。我想<mvc:annotation-driven />告诉你的计算机你真的,真的需要它(?)。

祝你好运。我只是在努力解决同样的问题。这是我最后的样子:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

    <!-- Explicitly enables the Spring MVC @Controller programming model -->
    <mvc:annotation-driven />

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

    <context:component-scan
        base-package="com.seemikecode.controller" />

    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.UrlBasedViewResolver">
        <property name="viewClass"
            value="org.springframework.web.servlet.view.JstlView" />
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>
</beans>