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
Hilla initializes some parts through a ServletContextInitializer that uses servletContext.addListener to add a ServletContextListener to the context. The actual initialization then takes place in the ServletContextListener. The problem is that the addListener method of AwsServletContext is empty.
Not sure where the correct place would be to invoke the listener. It seems to happen to work if I invoke the listener immediately.
Expected behavior
The added listener is called
Actual behavior
The added listener is ignored
The text was updated successfully, but these errors were encountered:
Serverless Java Container version:
1.9.1
Implementations:
Spring Boot 2
Framework version:
SpringBoot 2.7.5
Frontend service:
HTTP API
Deployment method:
SAM
Scenario
Hilla initializes some parts through a
ServletContextInitializer
that usesservletContext.addListener
to add aServletContextListener
to the context. The actual initialization then takes place in theServletContextListener
. The problem is that theaddListener
method ofAwsServletContext
is empty.Not sure where the correct place would be to invoke the listener. It seems to happen to work if I invoke the listener immediately.
Expected behavior
The added listener is called
Actual behavior
The added listener is ignored
The text was updated successfully, but these errors were encountered: