私は...同じ問題を抱えていたが、私は明白な理由のための容器に結び付けられたコードを足す好きではありません。
私がしたのは、セッションに例外を追加することでした。
まず、LoginContextのとのServletContext間の例外を送信するためにThreadLocalの例外ホルダーを構築:
public final class SecurityThreadLocal {
private static final ThreadLocal<Exception> j_exception = new ThreadLocal<Exception>();
public static void setException(Exception e) {
j_exception.set(e);
}
public static Exception getException() {
return (Exception)j_exception.get();
}
public static void clear() {
j_exception.remove();
}
}
SecurityThreadLocalにのLoginExceptionを追加します。
catch (Exception e) { // or just catch LoginException
log.log(Level.SEVERE, e.getMessage(), e);
SecurityThreadLocal.setException(e);
}
はとのHttpSessionに例外を追加します。フィルター:
web.xmlの
<filter-mapping>
<filter-name>SecurityFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
SecurityFilter.java
if (uri.endsWith("<form-error-page>") && session != null){
Exception j_exception = SecurityThreadLocal.getException();
if(j_exception != null)
session.setAttribute("j_exception", j_exception);
}
しかし、私は、これは悪い習慣やセキュリティ割れである知っているように、あなたは知っている必要があります。
まあ、私の場合は顧客が勝った...