1


我知道网络上有很多这样的问题(尤其是这里),但没有什么能真正帮助我。我正在使用 spring mvc(spring 版本 3.1.0.RELEASE),我想通过 URL 访问我的静态数据。
我的包:
-src --main
---
resources
----public
inside public 我有一个例如 test.xml 文件。
这是我的 web.xml

<context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/ApplicationContext.xml</param-value>
    </context-param>
<servlet>
        <servlet-name>appServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/spring/appServlet/ServletContext.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

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

这是我的 ServletContext.xml

<!-- Enables the Spring MVC @Controller programming model -->
    <annotation-driven />

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
    <resources mapping="/resources/public/**" location="/resources/public/" />


现在,当我输入此 URL“localhost:8080/bmark-central/resources/public/test.xml”时,我得到一个 404。我在没有上下文根“localhost:8080/resources/public/test.xml”的情况下尝试了它,而且没有得到我的 test.xml(也得到了 404)。我映射有什么问题吗?我在这里错过了什么吗?提前致谢 :)

4

1 回答 1

0

问题可能是静态资源应该与您的 web 内容相关 - 因此它们应该位于此文件夹中以便可访问 -src/main/webapp/resources/public而不是src/main/resources.

于 2012-08-04T13:09:14.770 回答