How to know which page is responding to the JSP request

3

I have several pages JSP , and I treat all of them in my% control%. I would like to know if you can identify the page that is being displayed so that I can do all the treatments, servlet and requests , specific to this page. Could someone help me?

    
asked by anonymous 24.11.2014 / 00:05

1 answer

2

You can try to use the method return HttpServletRequest.getRequestURI() .

    
24.11.2014 / 19:27