request.getServletPath()和request.getPathInfo()用法
在 Web 中,我们通常需要获取 URL 相对于 Webapp 的路径,主要是下面的几个方法:
1 request.getServletPath()
2 request.getPathInfo()
3 request.getContextPath()
4 request.getRequestURI()
其中 request.getRequestURI() 的返回值包含了 request.getContextPath(),所以是相对于网站的根目录的。
下面我们分析 request.getServletPath() 和 request.getPathInfo()
1. 如果我们的 servlet-mapping 如下配置:
1 <servlet-mapping>
2 <servlet-name>jetbrick-template</servlet-name>
3 <url-pattern>*.jetx</url-pattern>
4 </servlet-mapping>
那么访问: /context/templates/index.jetx
1 request.getServletPath() == "/templates/index.jetx"
2 request.getPathInfo() == <null>
2. 如果我们的 servlet-mapping 如下配置:
1 <servlet-mapping>
2 <servlet-name>jetbrick-template</servlet-name>
3 <url-pattern>/*</url-pattern>
4 </servlet-mapping>
那么访问: /context/templates/index.jetx
1 request.getServletPath() == ""
2 request.getPathInfo() == "/templates/index.jetx"
3. 如果我们的 servlet-mapping 如下配置:
1 <servlet-mapping>
2 <servlet-name>jetbrick-template</servlet-name>
3 <url-pattern>/template/*</url-pattern>
4 </servlet-mapping>
那么访问: /context/templates/index.jetx
1 request.getServletPath() == "/templates"
2 request.getPathInfo() == "/index.jetx"
总结 :
所以,我们要获取相对于 request.getContextPath() 的路径,我们可以使用如下的代码:
1 String uri = request.getServletPath();
2 String pathInfo = request.getPathInfo();
3 if (pathInfo != null && pathInfo.length() > 0) {
4 uri = uri + pathInfo;
5 }
或者:
1 String uri = request.getRequestURI();
2 String contextPath = request.getContextPath();
3 if (contextPath != null && contextPath.length() > 0) {
4 uri = uri.substring(contextPath.length());
5 }
===============================
2013-02-08 补上一个 Tomcat 自身的实现:
catalina.jar, DefaultServlet.java
view source
print?
01 protected String getRelativePath(HttpServletRequest request)
02 {
03 if (request.getAttribute("javax.servlet.include.request_uri") != null)
04 {
05 String result = (String)request.getAttribute("javax.servlet.include.path_info");
06 if (result == null) {
07 result = (String)request.getAttribute("javax.servlet.include.servlet_path");
08 } else {
09 result = (String)request.getAttribute("javax.servlet.include.servlet_path") + result;
10 }
11 if ((result == null) || (result.equals(""))) {
12 result = "/";
13 }
14 return result;
15 }
16 String result = request.getPathInfo();
17 if (result == null) {
18 result = request.getServletPath();
19 } else {
20 result = request.getServletPath() + result;
21 }
22 if ((result == null) || (result.equals(""))) {
23 result = "/";
24 }
25 return result;
26 }
request.getPathInfo();
这个方法返回请求的实际URL相对于请求的serlvet的url的路径。(个人理解。)
比如,有一个Servlet的映射是这样配置的:
<servlet-mapping>
<servlet-name>TestServlet</servlet-name>
<url-pattern>/servlet/test/*</url-pattern>
</servlet-mapping>
为servlet配置的访问路径是:/servlet/test/*
我只要访问:
http://localhost:8080/dwr/servlet/test/这里可以是任何东西
就可以访问那个servlet. dwr 是项目的名字
比如,我用这个 URL 来访问它:
http://localhost:8080/dwr/servlet/test/joejoe1991/a.html
这个实际的URL,相对于那个servlet 的url ("/servlet/test/*")的路径是:
/joejoe1991/a.html
所以 request.getPathInfo() 方法返回的就是:
"/joejoe1991/a.html"
如果你的URL里有查询字符串,getPathInfo() 方法并不返回这些查询字符串。
例如:
http://localhost:8080/dwr/servlet/test/joejoe1991/a.html?name=test
getPathInfo() 返回的仍然是:
"/joejoe1991/a.html" ,而并不包括后面的"?name=test"
我们可以利用这个方法去做类似于多用户博客系统的那种URL。
都是http://www.xxx.com/blog/ 开头
后面跟的是用户名,
比如我要访问joejoe1991的博客:
http://www.xxx.com/blog/joejoe1991
这个joejoe1991并不是一个真实存在的目录。
建一个servlet,配置路径为:/blog/*
然后在这个servlet里调用request.getPathInfo() 方法。
比如:http://www.xxx.com/blog/jjx
那request.getPathInfo() 方法返回的就是jjx ,表示要访问jjx的博客。
这时再去数据库里查相应的数据就好。
request.getQueryString()的介绍
比如发送 得到的是 a=b&c=d&e=f
转载于:https://blog.51cto.com/xuliangjun/1417107