Why does my Spring Controller direct me to the wrong page?
- by kc2001
I am writing my first Spring 3.0.5 MVC app and am confused about why my controller mappings aren't doing what I expect.
I have a VerifyPasswordController that is called after a user tries to log in by entering his name and password.
// Called upon clicking "submit" from /login
@RequestMapping(value = "/verifyPassword", method =…