我正在使用 Spring Security 开发用户身份验证。
我想通过我的 Controller 方法中的 @Valid 注释获取 Spring Form 参数。首先,执行 Spring 安全性,然后,我需要知道将 Login 对象从 AuthenticationFailureHandler 发送到 Controller 方法。
之后,在 Controller 方法中,我需要创建 BindingResult 以在 jsp Spring Form 错误功能中进行模拟。
现在我在 AuthenticationFailureHandler 和 Controller 方法中有这段代码。
public class AuthFailureHandler implements AuthenticationFailureHandler {
@Override
public void onAuthenticationFailure(HttpServletRequest request, HttpServletResponse response, AuthenticationException ae) throws IOException, ServletException {
Login login = new Login();
login.setType(request.getParameter("type"));
login.setEmail(request.getParameter("email"));
login.setPassword(request.getParameter("password"));
request.setAttribute("login", login);
response.sendRedirect(response.encodeRedirectURL("./login/error"));
}
}
在控制器方法中
@RequestMapping("/login/error")
public String loginError(Model model, @Valid Login login, BindingResult result) {
String message = this.messageSource.getMessage(
"NoAuth.loginManager",
null,
LocaleContextHolder.getLocale());
ObjectError error = new ObjectError("general", message);
result.addError(error);
model.addAttribute("login", new Login());
return "home";
}