我知道网上有很多这样的问题(特别是在这里),但没有什么能真正帮助我。我正在使用spring mvc(spring version 3.1.0.RELEASE),我想通过URL访问我的静态数据。
我的包裹:
-src
- 主
---资源
----公共
在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)。我映射错了什么?我在这里错过了什么吗?在此先感谢:)
答案 0 :(得分:0)
问题可能是静态资源应该与您的网站内容相关 - 因此它们应该位于此文件夹中,可以访问 - src/main/webapp/resources/public
而不是src/main/resources
。