I'm setting a java application with RestEasy, and I created an authentication filter to get jwt token and extract from it user information (for example a user DTO). I'd like to inject a bean (RequestScope?) to save user information, but I don't know how to do it: I tried as the following, but the object is null:
@Inject WebContextDto webContext;