这篇文章主要介绍了jsp文件绝对路径的设置方法,需要的朋友可以参考下
代码如下: <% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";//返回形式http://localhost:8080/upload/ > 调用: 代码如下: <%=basePath%> 在js代码里也可以直接用