404 Not Found Images Spring MVC JSP

时间:2015-02-21 16:32:41

标签: jquery jsp spring-mvc

我正在尝试从Spring-MVC控制器返回一个JSP。其他一切工作正常;图像和jquery没有正确加载。以下是我的配置。

web.xml
*************
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
            version="3.0">
    <display-name>Real-App</display-name>
    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>
            org.springframework.web.servlet.DispatcherServlet
        </servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

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

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/dispatcher-servlet.xml</param-value>
    </context-param>

    <listener>
        <listener-class>
            org.springframework.web.context.ContextLoaderListener
        </listener-class>
    </listener>

</web-app>

dispatcher-servlet.xml如下:

<mvc:resources  mapping="/resources/**" location="/resources/" />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix">
        <value>/WEB-INF/views/</value>
    </property>
    <property name="suffix">
        <value>.jsp</value>
    </property>
</bean>

在我的JSP中,我使用以下代码加载图像。

图片:

<img src="<c:url value="/resources/images/SomeImage.png" />" alt="" />

jQuery的:

<c:url var="jq" value="/resources/scripts/jquery-1.10.2.js" />
    <script type="text/javascript" src="${jq}"></script>

两者都无效,我在Chrome调试器中看到以下消息。

GET http://localhost:8080/Real-App/resources/images/SomeImage.png 404 (Not Found)
GET http://localhost:8080/Real-App/resources/scripts/jquery-1.10.2.js 

任何想法出了什么问题?

最诚挚的问候, 眸里。

1 个答案:

答案 0 :(得分:2)

由于您的调度程序网址格式为 / ,因此Spring将为所有网址查找@RequestMapping,您需要使用mvc:resources标记排除从这个

<mvc:annotation-driven />

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