i was wondering if it possible to use the @Resource annotation on a constructor?
My use case is that i want to wire a final field called Bar
public class Foo implements FooBar {
private final Bar bar;
@javax.annotation.Resource(name="myname")
public Foo(Bar bar) {
this.bar = bar;
}
}
I get a message that the @Resource is not allowed on this location, is there any other way i could wire the final field?