从抽象类继承注释?

时间:2014-01-28 15:10:01

标签: java spring dependency-injection

我可以以某种方式在抽象类上对一组注释进行分组,并且扩展此类的每个类都自动分配了这些注释吗?

至少以下内容不起作用:

@Service
@Scope(value = BeanDefinition.SCOPE_PROTOTYPE)
class AbstractService


class PersonService extends AbstractService {
    @Autowired //will not work due to missing qualifier annotation
    private PersonDao dao;
}

3 个答案:

答案 0 :(得分:20)

答案是:否

除非注释类型上有@Inherited元注释,否则不会继承Java注释:https://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Inherited.html

Spring的@Component注释does not have @Inherited on it,因此您需要在每个组件类上添加注释。 @ Service,@ Controller和@Repository都没有。

答案 1 :(得分:8)

简短的回答是:使用您在示例中提到的注释

答案很长:有一个名为java.lang.annotation.Inherited的元注释。如果注释本身是用这个注释注释的,那么当一个类用它注释时,它的子类也会通过暗示自动注释它。

但是,正如您在春季源代码中看到的那样,@Service@Scope注释本身并未使用@Inherited进行注释,因此@Service和{{}}的存在类的{1}}不会被其子类继承。

也许这可以在Spring中修复。

答案 2 :(得分:1)

我在我的项目中有这段代码并且它工作得很好,虽然它没有注释为服务:

public abstract class AbstractDataAccessService {

    @Autowired
    protected GenericDao genericDao;


}

@Component
public class ActorService extends AbstractDataAccessService {

    // you can use genericDao here

}

因此,您不需要在抽象类上添加注释,但即使您这样做,仍然必须将注释放在所有子类上,因为@Component@Service注释不会被继承。