怎么在spring项目里前端的jsp访问web目录下一个文件里的图片?路径该怎么写,求示例
我的项目结构如下:
就是在see.html或者see.jsp中写一个引用的图片路径,能得到picture文件夹中的123456.jpg,其中see.html.和see.jsp是在Webinfo目录,picture文件夹跟webinfo文件夹是平行的
------解决思路----------------------
../prcture/123456.jpg
------解决思路----------------------
<%String path = request.getContextPath();%>
<img src="<%=path>/picture/**.png"></img>
------解决思路----------------------
jsp 中
文件头部有
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
你在jsp文件中引用的话 只需要src="./picture/123456.jpg"
我看你的picture的文件夹是和web-inf同一级的
html下 没有绝对路径 就用"../picture/123456.jpg"就好了
你看看好用不
------解决思路----------------------
发布路径是哪个?或者说你访问see.html.和see.jsp的URL是什么?
写相对路径可能简单一点,但是如果发布路径没包含picture文件夹的话,肯定访问不到。
楼上的相对路径写得少了一层,用这个../../prcture/123456.jpg