How can I get request URL in JSP which is forwarded by Servlet?
If I run following code in JSP,
System.out.println(\"servlet path= \" + request.getSe
To avoid using scriplets in the jsp, follow the advice of "divideByZero", and use ${pageContext.request.requestURI} This is a better way to go.
${pageContext.request.requestURI}