I\'m trying to implement a remember-me function in my java ee 6 application, but I have issues combining it with the build-in security feature. I have the following configur
Container managed authentication is indeed invoked before all filters. This is a security restriction.
You've basically 3 options:
preRenderView event method of the bean associated with login.jsf instead.