欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

获取服务器路径

程序员文章站 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/

相关标签: jsp-服务器路径