Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 4 down vote accepted

From the source of @Resource:

@Target({TYPE, FIELD, METHOD})
@Retention(RUNTIME)
public @interface Resource {
    //...
}

This line:

@Target({TYPE, FIELD, METHOD})

means that this annotation can only be placed on Classes, Fields and Methods. CONSTRUCTOR is missing.

share|improve this answer
Damn... i have read it multiple times, but missed this.. thanks! So i will fallback to @Autowire and @Qualifier then. – Marco Apr 29 '11 at 11:10

Use @Autowired or @Inject. This limitation is covered in the Spring reference documentation: Fine-tuning annotation-based autowiring with qualifiers:

@Autowired applies to fields, constructors, and multi-argument methods, allowing for narrowing through qualifier annotations at the parameter level. By contrast, @Resource is supported only for fields and bean property setter methods with a single argument. As a consequence, stick with qualifiers if your injection target is a constructor or a multi-argument method.

share|improve this answer
I used @Autowired together with the @Qualifier annotation. This because i have multiple implementations that can be wired. To express which implementation i need i used the Qualifier. In the documentation it states that it is prefered to used @Resource in this case. So i am trying to do that. – Marco Apr 29 '11 at 11:05
Which documentation item says that @Resource is preferred? – Robert Munteanu Apr 29 '11 at 11:13
It is in the official documentation: static.springsource.org/spring/docs/2.5.x/reference/beans.html below chapter 3.11.3 as the Tip! – Marco Apr 29 '11 at 11:21
Good point. In the Spring 3 documentation this was refined to mention the very issue you encountered, look for the tip in static.springsource.org/spring/docs/3.0.x/reference/… – Robert Munteanu Apr 29 '11 at 11:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.