Il cuore di tutto è la request (HttpServletRequest)
http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/http/HttpServletRequest.html
Negli esempi la pagina è file.jsp e sta in /webapp/dir
localhost:8080/webapp/dir/file.jsp?param=xxx
request.getContextPath() -> /webapp
la root della webapp.
se la webapp è la ROOT dell'app server, restituisce chiaramente una stringa vuota
request.getRequestURI() -> /webapp/dir/file.jsp
il percorso completo alla pagina
request.getServletPath() -> /dir
il percorso alla pagina al di sotto della root della webapp
enjoy
/m
http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/http/HttpServletRequest.html
Negli esempi la pagina è file.jsp e sta in /webapp/dir
localhost:8080/webapp/dir/file.jsp?param=xxx
request.getContextPath() -> /webapp
la root della webapp.
se la webapp è la ROOT dell'app server, restituisce chiaramente una stringa vuota
request.getRequestURI() -> /webapp/dir/file.jsp
il percorso completo alla pagina
request.getServletPath() -> /dir
il percorso alla pagina al di sotto della root della webapp
enjoy
/m
Commenti