ユーザーの認証に Spring セキュリティを使用しています。カスタム認証プロバイダーを作成しましたが、プロバイダーからフォームにエラー メッセージを取得する方法を知りたいと思っています。これは、私のカスタム認証プロバイダーの authenticate() メソッドです。
@Override
public Authentication authenticate(Authentication authentication) throws AuthenticationException {
UserProfile profile = userProfileService.findByEmail(authentication.getPrincipal().toString());
if(profile == null){
throw new UsernameNotFoundException(String.format("Invalid credentials", authentication.getPrincipal()));
}
String suppliedPasswordHash = DigestUtils.shaHex(authentication.getCredentials().toString());
if(!profile.getPasswordHash().equals(suppliedPasswordHash)){
throw new BadCredentialsException("Invalid credentials");
}
UsernamePasswordAuthenticationToken token = new UsernamePasswordAuthenticationToken(profile, null, profile.getAuthorities());
return token;
}
これは私のフォームです:
<form name='f' action="<c:url value='j_spring_security_check' />" method='POST'>
<div id="data-entry-form">
<div class="form-entry">
<label><spring:message code="login.form.label.email"/></label>
<input type='text' name='j_username' value=''>
</div>
<div class="form-entry">
<label><spring:message code="login.form.label.password"/></label>
<input type='password' name='j_password'/>
</div>
<div class="form-entry">
<input type="submit" value="Verzenden"/>
</div>
</div>
フォームにエラー メッセージを表示するにはどうすればよいですか? ログインボタンを押した瞬間からSpringが引き継ぐので、エラーメッセージを生成できる唯一のメソッドはauthenticate()メソッドです...