Call 1 jersey resource class from another Jersey r

2019-04-06 22:42发布

问题:

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.

回答1:

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.