Details
Description
Scenario is :
- I have extra view and method in controler for forcing user to change password.
- I don't want to send old encrypted password to view and creating ecripting function in javascript.
- I want to take plain password form UPDATE form, encrypt and test it equals with old one in controller.
- When password equals, I do "bindingResult.rejectValue("password"", "user_same_password")"
- After return I get "HTTP Status 405 - JSPs only permit GET POST or HEAD" from tomcat without stacktrace.
- When I use create form (use post method) everyting work as should.