首页 > Web开发 > 详细

jsp

时间:2019-04-23 10:08:53      阅读:131      评论:0      收藏:0      [点我收藏+]

<%
String contextPath = request.getContextPath();
request.setAttribute("contextPath", contextPath);
%>

 http://localhost:8080/Info_System/user/user_info.jsp 

https://www.cnblogs.com/gzl180110/p/10754477.html

  1.request.getSchema();可以返回当前页面所使用的协议,就是”http”

  2.request.getServerName();返回当前页面所在服务器的名字,就是上面例子中的”localhost”

  3.request.getServerPort();返回当前页面所在服务器的端口号,就是上面例子中的”8080”

  4.request.getContextPath();返回当前页面所在的应用的名字,就是上面例子中的”Info_System”

<%
String path = request.getContextPath();
String basePath = request.getScheme()+”://”+request.getServerName()+”:”+request.getServerPort()+path+”/”;
%>

根路径应该是那么http://localhost:80/Info_System/ 也就是 basePath

 

jsp

原文:https://www.cnblogs.com/gzl180110/p/10754477.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!