评论

收藏

[JSP] jsp文件绝对路径的设置方法

开发技术 开发技术 发布于:2021-10-23 17:35 | 阅读数:224 | 评论:0

<% 
String path = request.getContextPath(); 
String basePath = request.getScheme() + "://" 
+ request.getServerName() + ":" + request.getServerPort() 
+ path + "/";//返回形式https://localhost:8080/upload/ 
>
调用:
<%=basePath%>
在js代码里也可以直接用
关注下面的标签,发现更多相似文章