In my Jersey application, I'd like to have a ContainerRequestContext
instance injected into various objects. In the case that the object in being created outside of the context of a request, I would like null to be injected.
I noticed HK2 has an @Optional
annotation that you can annotate dependencies with, and I was hoping that would do the job for, unfortunately it doesn't change the behaviour at all.
public class MyObject {
private final ContainerRequestContext containerRequestContext;
@Inject
public MyObject(@Optional ContainerRequestContext containerRequestContext) {
this.containerRequestContext = containerRequestContext;
}
}
If this object is instantiated outside of a request scope (in my case, a Job run by a Quartz scheduler), then an exception like this gets thrown:
java.lang.IllegalStateException: Not inside a request scope.
It would massively simplify my code if Jersey would just inject null when outside of a request scope, any ideas how to do this?
I've figured out a way of doing it, but it's basically a hack. Instead of having
ContainerRequestContext
injected, you can instead try to explicitly get aContainerRequestContext
instance from theServiceLocator
, and handle the exception when the context is outside of a request scope.It's then possible to go one step further and create your own
OptionalContainerRequestContext
type.You can then bind it:
And then inject it wherever you need: