路径问题

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

request.getContextPath()

返回当前项目的名称的路径  /waf

request.getScheme();
返回的协议名称,默认是http

request.getServerName()
返回的是你浏览器中显示的主机名,你自己试一下就知道了

getServerPort()
获取服务器端口号

转载于:https://www.cnblogs.com/zwy008/p/7645482.html

你可能感兴趣的:(路径问题)