I have the usual setup: A webapp with a login screen and a small Java class which sets up Jetty to launch the app.
During development, we all waste a couple of seconds to log in after every change to the code which forces a restart. (No, JRebel doesn't help since it doesn't run the constructors again so it can miss some changes).
So I was wondering if I could patch the Jetty setup in such a way:
If I request /index.jsp, instead of going to the real JSP, it should load a servlet which fills in the username and password of the typical development user, logs him in, and then redirects to the main JSP of the app.
To make everything safe, I'll put this auto-login code into the test path, so it can't be deployed accidentally.
Now the question: How do I configure URL redirection/rewriting in Jetty from Java code? For obvious reasons, I don't want to touch web.xml.