我用Spring mvc做了一个简单的Web应用程序。
我想使用这些网址
第一个案例
<servlet-mapping>
<servlet-name>SpringMVC1</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
效果很好。
但我看不懂
http://localhost:8080/res/images/image.png - 404错误
在{my project path} /WebContent/res/images/logo.png
第二种情况
<servlet-mapping>
<servlet-name>SpringMVC1</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
我可以在http://localhost:8080/res/images/image.png上看到图片 但是http://localhost:8080/user/create - 404错误
怎么了?
答案 0 :(得分:5)
您需要在XML中使用以下内容:
<mvc:resources mapping="/res/**" location="/path/to/your/resources"/>
答案 1 :(得分:4)
更详细说明..
在我的spring配置xml文件中
我追加
<mvc:resources mapping="/res/**" location="/path/to/your/resources"/>
必须附加下一步..
追加到根节点 - 豆
xmlns:mvc="http://www.springframework.org/schema/mvc"
并附加到xsi:schemaLocation
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
并附加mvc:annotation-driven node。
<mvc:annotation-driven />
这是我的弹簧配置xml
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="com.test" />
<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>
<mvc:annotation-driven />
<mvc:resources mapping="/res/**" location="/res/" />
</beans>
效果很好。
谢谢Sean Patrick Floyd。