struts1之url截取
先我们来对actionservlet深层次进行分析。我们用断点的调试的方式来看底层源码。因为这个实例是post方式提交,所以将断点设置到dopost方法上。
我们debug运行程序,进入dopost里面的方法:
这个方法非常重要是actionservlet运行的核心方法。
我们进入这个方法:
再继续进入:
我们赫然发现了这样一个方法就是processpath方法,这个方法就是截取字符串的方法。这个方法的源代码如下:
/**
* <p>identify and return the path component(from the request uri) that
* we will use to select an <code>actionmapping</code> with which todispatch.
* if no such path can be identified,create an error response and return
* <code>null</code>.</p>
*
* @param request the servlet request weare processing
* @param response the servlet response weare creating
*
* @exception ioexception if an input/outputerror occurs
*/
protectedstring processpath(httpservletrequest request,
httpservletresponse response)
throws ioexception {
string path = null;
// for prefix matching, match on the path info (if any)
path = (string) request.getattribute(include_path_info);
if (path == null) {
path = request.getpathinfo();
}
if ((path != null) && (path.length() > 0)) {
return (path);
}
// for extension matching, strip the module prefix and extension
path = (string) request.getattribute(include_servlet_path);
if (path == null) {
path = request.getservletpath();
}
string prefix = moduleconfig.getprefix();
if (!path.startswith(prefix)) {
string msg =getinternal().getmessage("processpath");
log.error(msg + " " + request.getrequesturi());
response.senderror(httpservletresponse.sc_bad_request, msg);
return null;
}
path = path.substring(prefix.length());
int slash = path.lastindexof("/");
int period = path.lastindexof(".");
if ((period >= 0) && (period >slash)) {
path = path.substring(0, period);
}
return (path);
}
分析一下这段代码:
path = (string)request.getattribute(include_path_info);
if (path == null) {
path = request.getpathinfo();
}
if ((path != null) && (path.length() > 0)) {
return (path);
}
这段代码首先判断一下javax.servlet.include.path_info是否存在路径信息,这里要知道当当一个页面是以requestdispatcher.include方式显示的话,这个属性值才存在。所以这里没有值,就会进入path=request.getpathinfo()程序中,这里的getpathinfo获取的值是相对servlet的路径信息。
// for extension matching, stripthe module prefix and extension
path = (string) request.getattribute(include_servlet_path);
if (path == null) {
path = request.getservletpath();
}
string prefix = moduleconfig.getprefix();
if (!path.startswith(prefix)) {
string msg =getinternal().getmessage("processpath");
log.error(msg + " " + request.getrequesturi());
response.senderror(httpservletresponse.sc_bad_request, msg);
return null;
}
这一段代码是判断javax.servlet.include.servlet_path是否存在值,这个也是当一个页面是以equestdispatcher.include方式显示的话,这个属性值才存在,所以这里的值没有。之后进入path = request.getservletpath();这个方法是获得返回请求uri上下文后的子串,所以这里的返回值就是“/”和访问页面名称和后缀(这里和我的mvc实例截取的是不是一样的道理)。随后进入下面代码:
path = path.substring(prefix.length());
intslash = path.lastindexof("/");
intperiod = path.lastindexof(".");
if((period >= 0) && (period > slash)) {
path = path.substring(0, period);
}
return (path);
这里的方法主要和我的上面的那里是一样的,主要就是去掉后缀。
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!