Skip to content

Instantly share code, notes, and snippets.

View vicly's full-sized avatar

Vic vicly

  • Auckland, New Zealand
View GitHub Profile
@vicly
vicly / jersey_custom_object_injection.md
Last active March 18, 2022 12:17
[Jersey custom object injection using `@Context MyObj`] #Java #REST

Custom Factory

import org.glassfish.hk2.api.Factory;
import org.glassfish.hk2.utilities.binding.AbstractBinder;
import org.glassfish.jersey.process.internal.RequestScoped;

import javax.inject.Inject;
import javax.ws.rs.container.ContainerRequestContext;