Replies: 3 comments
-
There's a current limitation of Panache requiring a request scope to define the boundaries of the underlying Hibernate resources; I know some people (including me) have some prototypes about how to improve this but it's not entirely ready and I'm not confident enough to provide a recommendation still. I would suggest don't use Panache Reactive? Inject a |
Beta Was this translation helpful? Give feedback.
-
May be you can use
directly without the injection ? |
Beta Was this translation helpful? Give feedback.
-
Hi guys!
I try to use quarkus with reactive hibernate (with Panache) in custom identity provider (because the security-jpa provider is not reactive and not work).
I try to do:
but when I try to call it I got a
javax.enterprise.context.ContextNotActiveException
because theArc.container().requestContext().isActive()
isfalse
How can I propagate the request context down to the identityprovider in a reactive environment?
the user service is simple:
Thanks
Beta Was this translation helpful? Give feedback.
All reactions