context.xml などのコンテキストからリソース フォルダー内のフォルダーをマップしたい (src/main/resources からファイルをマップしたい)
<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="alwaysUseFullPath" value="true"/>
<property name="mappings">
<props>
<prop key="/resources/**">staticResources</prop>
</props>
</property>
</bean>
<bean id="staticResources" class="org.springframework.web.servlet.resource.ResourceHttpRequestHandler">
<property name="locations">
<list>
<value>classpath:/resources/myFolder/</value>
<value>/resources/</value>
</list>
</property>
</bean>
ファイルを含む多くのサブフォルダーとそれmyFolder
以上のサブフォルダーがありますが、firebug はエラー 404 を示し、そのようなリソースが見つからないことを示しています