request.getSchema()能够返回当前页面使用的协议,好比,通常应用返回http;SSL返回https;服务器
request.getServerName()能够返回当前页面所在的服务器的名字;code
request.getServerPort()能够返回当前页面所在的服务器使用的端口,就是80;get
request.getContextPath()能够返回当前页面所在的应用的名字;request
String path = request.getContextPath(); String projectName = path.replace("/", ""); String basePath = request.getScheme()+"://" + request.getServerName()+":"+request.getServerPort()+path+"/";