To handle viewExpiredException in JSF, I coded
<error-page>
    <exception-type>javax.faces.application.ViewExpiredException</exception-type>
    <location>/error.html</location>
</error-page>
<session-config>
    <session-timeout>1</session-timeout>
</session-config>
in web.xml.
In error.html I have redirected to original login page. But the problem is session scoped bean were not cleared out even session expired. Is there any way to solve this?
 
    