标签:主机 app context name rpo ring request sch contex
<%
String appContext = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+ request.getServerPort() + appContext;
%>
request.getContextPath()
返回当前项目的名称的路径 /waf
request.getScheme();
返回的协议名称,默认是http
request.getServerName()
返回的是你浏览器中显示的主机名,你自己试一下就知道了
getServerPort()
获取服务器端口号
标签:主机 app context name rpo ring request sch contex
原文地址:http://www.cnblogs.com/zwy008/p/7645482.html