获取服务器路径
程序员文章站
2022-05-09 15:04:40
...
获取服务器路径
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
<base href="<%=basePath%>">
request.getSchema()返回当前使用的协议;
request.getServerName()返回服务器地址;
request.getServerPort()返回当前页面所在的服务器使用的端口;
request.getContextPath()返回当前项目名称;
例如:
String basePath = “http://127.0.0.1:8081/zt/”