@Target @Retention @Documented 元注解
@Component 将类交给IOC容器管理,成为IOC容器中的bean
@Autowired 注入运行时所需要依赖的对象
因为Mabatis DAO层注解@Reponsitory 基本不用了,现在Mapper层@Mapper注解,这里的Mapper层相当于原来的DAO层。
Bean 组件扫描
依赖注入
多个相同的bean,解决方案
@Primary 设置优先级
@Qualifier 设置bean名字
@Resource 设置bean的名字,按照名称进行注入 (JDK提供的)
@Autowired 按照类型进行注入 (Spring框架提供)