我在图像文件夹中添加了一个新的子目录,但无法解析新图像。
加载资源失败:... 404(未找到)
http://localhost:8080/mywebapp/content/images/subdir/mysubdirimage.png
我的目录结构:
src
-- main
--java
--webapp
--content
--images // <- these resolve
--subdir // <- new subdir...resolve fail for images
我尝试添加以下内容但不起作用:
<mvc:resources mapping="/content/**" location="/content/" />
mvc-调度程序-servelet.xml:
<mvc:annotation-driven/>
<mvc:default-servlet-handler />
<mvc:resources mapping="/content/**" location="/content/" /> //<-- Added this..no go!
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />
<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>