我是Spring MVC的新手,我有一个应用程序,可以将图像存储在应用程序的根目录中。
目录是这样的:C:\Users\Golla\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp1\wtpwebapps\medicalus\images\1423310234176.png
我的项目名称是medicalus,images文件夹用于保存图像。 现在我想检索它并在jsp页面中显示它。我试过放弃完整的图像路径并尝试添加< MVC:资源> servlet调度程序的标记,但这些都没有。
如何显示位于服务器根目录中的图像? 任何建议将不胜感激。
答案 0 :(得分:2)
试试这个:
在Spring的配置文件中:
<mvc:resources mapping="/images/**" location="/images/" />
在你的JSP中:
<img src="${pageContext.request.contextPath}/images/1423310234176.png" />