This seems like a pretty basic question but I unfortunately don't know the answer and can't seem to find it.
I'm trying to understand the lifecycle of an initial POST/GET to a Java 6 server running Spring 2.5 on Tomcat 6.
I noticed that for an HttpServletRequest, request.getRequestURL() in a controller returns the original request to which it is mapped (ex. "http://localhost:8080/computers/accessories.html"). That same invocation in the corresponding JSP returns the path to the JSP itself (ex. "http://localhost:8080/WEB-INF/jsp/category.jsp"). I was expecting to see the original HTML request!
Am I missing something?