j_security_check redirect
Is there a way to force j_security_check to redirect a user to a specific page every time, rather than wherever it came from?
If someone goes directly to my login page and logs in using the login form, they get a 404 error since there is no page to be sent to.
I would like to bounce everyone to a home page on login.
(is it relevant that I'm doing this on Tomcat? this is all new to me...)
Is there a tag I can stick in the WEB-INF/web.xml file, under <login-config>?

