springmvc 转发之后,不能访问图片路径了
springmvc controller转发到jsp之后,访问图片的路径变了,加上了controller类的RequestMapping参数的值。
请问这是什么原因?
wunian
9 years, 8 months ago
Answers
看了评论你贴的代码。你jsp中访问那张图片用的是相对路径吧
<img src="YHChannelApply/001.jpg" />
你网站默认路径是main目录下,所以图片url相对路径就是
/hrMs/main/YHChannelApply/001.jpg
然后controller跳转后到了
/people/getPeopleList
图片url对应就成了
/hrMS/people/YHChannelApply/001.jpg
在WebContent下建立一个resources目录,把图片放进resources/img。jsp中用
<img src="${ctx}/resources/img/YHChannelApply/001.jpg" />
ctx是用jstl设置的值就是项目路径,一般放在jsp顶部
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
陸西華凹凸轉世
answered 9 years, 8 months ago