request object
|
request.getServletPath()
|
= |
/documents/examples/index.jsp
|
request.getContextPath()
|
= |
|
request.getRequestURI()
|
= |
/documents/examples/index.jsp
|
servlet object
|
this.getServletContext().getRealPath ( "" )
|
= |
/home/kap/web-ware-2004-summer/
|
|
this.getServletContext().getRealPath ( request.getServletPath() )
|
= |
/home/kap/web-ware-2004-summer/documents/examples/index.jsp
|
|
this.getServletContext().getRealPath ( request.getContexPath() )
|
= |
/home/kap/web-ware-2004-summer/
|
this.getServletContext().getRealPath ( request.getRequestURI() )
|
= |
/home/kap/web-ware-2004-summer/documents/examples/index.jsp
|