request 获取服务根目录地址

http://www.cnblogs.com/zhongzheng123/p/5702293.html


这是常用的request获取服务地址的常用方式。

源请求服务地址:http://localhost/api-server/1/forum/thread/hot_topic?sex=1

String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

这个截取结果:http://localhost:80/api-server/


你可能感兴趣的:(Web,Java)