I have a simple user application. I have a MainController
Servlet that will be in charge of general interaction in the application. This servlet will be "listening" for url-patterns: /, /index, etc (any other form of index). I also have an UserController
Servlet that is in charge of login among other things, this one "listens" from /CheckLogin
url-pattern.
I have form in a jsp, in the url /
, that when I submit it, it points to the servlet at /CheckLogin
. Then UserController
servlet process it and either the login is ok or wrong it redirect to /
(the MainController
will be in charge of determining the page to show depending if the user logged in or not).
All work flawlessly except that after submitting the first time, then the form page has url /CheckLogin
. I would like to remove it and show only / (even if logged or not). How do I do this (plain Java EE, not Spring or any other framework)?