You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Initialized and @BeforeDestroyed events for session context should be observable by @SessionScoped beans.
Attempting this at the moment leads to a stack overflow because:
During observer notification our proxies check if given session context isActive()
In current context impl, this always triggers creation of a new session
This in turn notifies HttpSessionListener#sessionCreated where we fire new @Initialized event and again try to notify observers
Issue can be reproducer by changing SessionContextTestCase and adding given observer bean.