sping注解

1.@Autowired(已不推荐使用)

  按类型装配,如果匹配不到或者匹配到多个则抛BeanCreationException异常。如果是多个时可以用@Qualifier指定来解决

  eg. @Autowired

    @Qualifier("xxx")

2.@Resource(推荐使用,替换@Autowired)

  按名称装配,如果找不到则抛异常。

3.@Component,@Repository, @Service , @Controller

原文地址:https://www.cnblogs.com/hsuchan/p/5996645.html