路径获取
驭春风
这个作者很懒,什么都没留下…
展开
-
nginx代理后服务端从request中获取不到用户的请求URL
一般来说,通过nginx代理后getRequestURL取得的值是nginx代理的URL的值,取不到用户访问的URL。此时,通过在需要获取请求URL的location节点中,在nginx中增加如下配置:proxy_redirect off;proxy_set_header Host $http_host;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_fo原创 2020-09-07 23:26:56 · 1313 阅读 · 0 评论 -
request获取上下文路径、URL、URI、Servlet路径等方法
String getContextPath():返回上下文路径,例如:/helloString getQueryString():返回请求URL中的参数,例如:name=zhangSanString getRequestURI():返回请求URI路径,例如:/hello/oneServletStringBuffer getRequestURL():返回请求URL路径,例如:http://localhost/hello/oneServlet,即返回除了参数以外的路径信息;String getS转载 2020-09-07 23:21:55 · 1176 阅读 · 0 评论