【发布时间】:2016-01-31 04:52:15
【问题描述】:
我在spring mvc项目中创建了一个简单的jsp页面。但我无法从图像文件夹中加载图像。我尝试使用真实路径和上下文路径仍然无法将图像加载到 jsp 文件中。
真实路径:
<%
String realPath = application.getRealPath("/");
%>
<img src="<%=realPath%>images\logo.png" alt="student" title="student">
上下文路径:
<%
String contextPath = request.getContextPath();
%>
<img src="<%=realPath%>images\logo.png" alt="student" title="student">
我的项目文件夹结构看起来像
我错过了什么吗?是否需要在 web.xml 中进行任何配置?
有什么建议吗?
【问题讨论】:
标签: java html jsp spring-mvc