SpringBoot: 注解@Autowired

文章目录

  • 1.美图
  • 2.概述
  • 3.@Autowired定义
  • 4.xml配置
  • 5.自动注入的示例
    • 5.1 Service、DAO层接口及实现类
    • 5.2 ComponentScan
    • 5.3 测试
    • 5.4 总结
  • 6.@Autowired的规则
    • 6.1 @Autowired的查找过程如下:
  • 7. @Autowired与@Qualifier强强联合
    • 7.1 添加一个StudentDAO的实现,并设置原来的StudentDaoImpl名称
    • 7.2 StudentServiceImpl主动指定依赖项
    • 7.3 测试
  • 8.@Autowired与

你可能感兴趣的:(框架-spring,boot)