getContextPathgetServletPathgetRequestURI的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了getContextPathgetServletPathgetRequestURI的区别相关的知识,希望对你有一定的参考价值。

假定你的web application名称为example,你在浏览器中输入请求路径: 

https://localhost:8080/example/main/edit.jsp

则执行下面代码后打印结果如下: 

System.out.println(request.getContextPath());
//result:/example

System.out.println(request.getServletPath());
//result:/main/edit.jsp
System.out.println(request.getRequestURI()); //result:/example/main/edit.jsp System.out.println(request.getRealPath("/")); //result:D:\Tomcat 7\webapps\example\test

 


以上是关于getContextPathgetServletPathgetRequestURI的区别的主要内容,如果未能解决你的问题,请参考以下文章