Invalidate specific jsf bean session
问题 How I invalidate a specific bean in a session? I have this example code. I test with ExternalContext.invalidateSession(); but it destroy all beans in the session in the application since it destroys the full session. @Named @SessionScoped class Managed implements Serializable { public void invalidate (){ // lines // externalContext.invalidateSession(); } } but, with invalidateSession all beans in the session are destroyed, I want to invalidate only the one specific "Managed" bean, how I do