- 1、本文档共5页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Struts1之url截取
Struts1 之 url 截取
首先我们来对 ActionServlet 深层次进行分析。我们用断点的调试的方式来看底层源码。因为这个实例是 post 方式提
交,所以将断点设置到 doPost 方法上。
我们 debug 运行程序,进入 doPost 里面的方法:
这个方法非常重要是 ActionServlet 运行的核心方法。
我们进入这个方法:
1 / 5
再继续进入:
我们赫然发现了这样一个方法就是 processPath 方法,这个方法就是截取字符串的方法。这个方法的源代码如下:
1. /**
2. * pIdentify and return the path component(from the request URI) that
3. * we will use to select an codeActionMapping/code with which todispatch.
4. * If no such path can be identified,create an error response and return
5. * codenull/code./p
6. *
7. * @param request The servlet request weare processing
8. * @param response The servlet response weare creating
9. *
10. * @exception IOException if an input/outputerror occurs
2 / 5
11. */
12. protectedString processPath(HttpServletRequest request,
13. HttpServletResponse response)
14. throws IOException {
15.
16. String path = null;
17.
18. // For prefix matching, match on the path info (if any)
19. path = (String) request.getAttribute(INCLUDE_PATH_INFO);
20. if (path == null) {
21. path = request.getPathInfo();
22. }
23. if ((path != null) (path.length() 0)) {
24. return (path);
25. }
26.
27. // For extension matching, strip the module prefix and extension
28. path = (String) request.getAttribute(INCLUDE_SERVLET_PATH);
29. if (path == null) {
30. path = request.getServletPath();
31. }
32. String prefix = moduleConfig.getPrefix();
33. if (!path.startsWith(prefix)) {
34. String msg =getInternal().getMessage(processPath);
35.
36. log.error(msg + + request.getRequestURI());
37. response.sendError(HttpServletResponse.SC_BAD_REQ
文档评论(0)