How to create a "Custom Injection Provider" (factory) without jersey

502 Views Asked by At

Is there a way to achieve the same result described here not depending on jersey but pure jax-rs? I'd like to create a Custom Injection Provider like Jersey so I can inject MyClass extracting custom data from HttpServletRequest

@Inject
protected MyClass myClass;

I also found this discussion useful, it works the same with java.util.function.Supplier but Jersey is still needed in this code:

bindFactory(MyFactoryOrSupplier.class)
.to(MyClass.class)
.in(RequestScoped.class);

EDIT:

CDI is also a good alternative, but pure jax-rs is preferable

1

There are 1 best solutions below

0
On BEST ANSWER

I find out this solution using CDI:

@ApplicationScoped
public class MyFactoryOrSupplier {

    @Produces
    @RequestScoped
    public IMyClass getMyClass(@Context HttpServletRequest request) {
        return (IMyClass) request.getAttribute("MyInjectedClass");
    }
}

and then in my servlets:

@Inject
protected IMyClass myClass;

beans.xml

bean-discovery-mode="annotated"

Actually MyClass implements IMyClass because I don't what MyClass to have a public constructor with no-args and this did the trick.