I have Jersey resource class A calling a method in resource class B.Both classes have a @Context ServletContext servletContext at the class level. When I instantiate class B to call it from resource class A using its empty constructor, servletContext is null in the class B method being called. Is there any Jersey framework way I can call class B and yet have the servletContext retain its values/attributes from class A.
You can instantiate class B using ResourceContext. I.e. in class A you can have:
@Context private ResourceContext rc;
And then in you can instantiate resource B as follows:
B resourceB = rc.getResource(B.class);
See ResourceContext javadoc for more info.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With