javax.faces.application.ViewExpiredException がある場合、ユーザーをログインページに送りたいと思います。
web.xml
...
<context-param>
<param-name>com.sun.faces.enableRestoreView11Compatibility</param-name>
<param-value>true</param-value>
</context-param>
...
<error-page>
<exception-type>javax.faces.application.ViewExpiredException</exception-type>
<location>/errors/sessionExpired.jsf</location>
</error-page>
sessionExpired.jsf
....
<c:redirect url="/index.jsf" />
enableRestoreView11Compatibility は JSF 1.1 で使用されていたメソッドですが、JSF 1.2 での解決策は何ですか?