LoginControllerのアクションauthfailで認証が失敗したときに、春のセキュリティコアgrailsプラグインでユーザーが入力したパスワードを取得する方法はありますか?
def authfail = {
def msg = ''
// I can get the username as below
def username = session[UsernamePasswordAuthenticationFilter.SPRING_SECURITY_LAST_USERNAME_KEY]
// There is UsernamePasswordAuthenticationFilter.SPRING_SECURITY_FORM_PASSWORD_KEY but the value is null when access here as below
def attemptedPassword = session[UsernamePasswordAuthenticationFilter.SPRING_SECURITY_FORM_PASSWORD_KEY]
.
.
.
}
認証に失敗したときに入力したパスワードを知る必要があります。