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
@martinpllu the fix for this is now in the core branch. It will go out with 1.3. The root cause of the issue is that Jersey (and the JAX-RS specs) treat suppliers as singletons so by default it does not allow injection in single-request-scoped contexts. I have added the configuration to allow "proxying" of the suppliers.
Scenario
Trying to inject an
HttpServletRequest
object in a container request filter results in an exception:Expected behavior
HttpServletRequest
should be injected corectlyActual behavior
Throws
java.lang.IllegalStateException: Not inside a request scope
The text was updated successfully, but these errors were encountered: