Can I use CDI to @Inject a class in Jersey 1.x?
问题 I think I'm asking this question but for Jersey 1.x: Dependency injection with Jersey 2.0 I'm using Glassfish 3, CDI and Jersey 1.x. I have a @WebService that is injecting a class like this: @Inject Foo foo; I've tested this in the @WebService and it works. But the same line of code in my Jersey resource throws a NPE when it tries to use foo . I think Jersey 1.x is ignoring the CDI annotations. How can I get dependency injection working like it does in my @WebService ? Foo is a pojo and my