如何在各个层级获取用户的请求路径
答案:1 悬赏:60 手机版
解决时间 2021-11-30 21:01
- 提问者网友:我们很暧昧
- 2021-11-30 00:40
如何在各个层级获取用户的请求路径
最佳答案
- 五星知识达人网友:刀戟声无边
- 2021-11-30 01:12
通常当我们编写一个 Servlet 或 Filter 时,会要获取用户的请求路径。下面是获取请求路径的方法。
假设我们创建了一个 webapp 部署在 /app 路径下,webapp 里面有一个 Servlet 对应的路径为 /servlet1/*,那么当我们请求 http://localhost/app/servlet1/index 时,可以这样得到请求路径:
String fullPath = request.getRequestURI();
String outerPath = fullPath.substring(request.getContextPath().length());
String innerPath = outerPath.substring(request.getServletPath().length());
你就会得到
fullPath = "/app/servlet1/index"outerPath = "/servlet1/index"innerPath = "/index"
注意,fullPath 当中不会包含 URL 参数,也就是说你请求 http://localhost/app/servlet1/index?name=a 时,得到的结果是一样的。
假设我们创建了一个 webapp 部署在 /app 路径下,webapp 里面有一个 Servlet 对应的路径为 /servlet1/*,那么当我们请求 http://localhost/app/servlet1/index 时,可以这样得到请求路径:
String fullPath = request.getRequestURI();
String outerPath = fullPath.substring(request.getContextPath().length());
String innerPath = outerPath.substring(request.getServletPath().length());
你就会得到
fullPath = "/app/servlet1/index"outerPath = "/servlet1/index"innerPath = "/index"
注意,fullPath 当中不会包含 URL 参数,也就是说你请求 http://localhost/app/servlet1/index?name=a 时,得到的结果是一样的。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯