もっと詳しく説明..
私の春の設定xmlファイルで
私は追加します
<mvc:resources mapping="/res/**" location="/path/to/your/resources"/>
次に追加する必要があります..
ルートノードに追加 - Bean
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation に追加します
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
mvc:annotation-driven ノードを追加します。
<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>
それはうまくいきます。
ありがとう、ショーン・パトリック・フロイド。