Spring / Spring Beans
What is @Resource annotation in Spring framework?
javax.annotation.@Resource annotation can be applied on fields or setter methods for dependency injection and it follows by-name autowiring semantics, name extracted from the name of the annotated setter/field or from the 'name' attribute. The @Resource annotation takes a 'name' attribute which will be interpreted as the bean name to be injected.
@Resource is specified by the JSR-250.
More Related questions...