我们在写jsp页面的时候 总是会在页面的开头看到一个路径
其实是用来拼接当前网页的相对路径
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
给大家举个例子
http://localhost:8081/oooo/
request.getSchema();可以返回当前页面所使用的协议,就是 http
request.getServerName();返回当前页面所在服务器的名字,就是上面例子中的 localhost
request.getServerPort();返回当前页面所在服务器的端口号,就是上面例子中的 8081
request.getContextPath();返回当前页面所在的应用的名字,就是上面例子中的 ooo
当这四个拼装起来,就是当前应用的跟路径