我想将我的文件夹从上下文映射到资源文件夹中,例如在 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
许多带有文件的子文件夹和更多子文件夹,但萤火虫说错误 404 并且找不到此类资源