springboot自动装配

文章目录

    • 1、自动装配是什么及作用
    • 2、spring自动装配的原理
      • 2.1、启动类上注解的作用
        • @SpringBootApplication
          • @SpringBootConfiguration
          • @EnableAutoConfiguration
            • @AutoConfigurationPackage
            • @Import(AutoConfigurationImportSelector.class)
          • @ComponentScan
        • 2.2、springboot自动装配的流程
    • 3、相关注解的作用
      • @Conditional

1、自动装配是什么及作用

springboot的自动装配实际上就是为了从spring.factories文件中获取到对应的需要进行自动装配的类,并生成相应的Bean对象,然后将它们交给spring容器来帮我们进行管理

2、spring自动装配的原理

2.1、启动类上注解的作用

@SpringBootApplication

这个注解是springboot启动类上的一个注解,是一个组合注解,也就是由其他注解组合起来,它的主要作用就是标记说明这个类是springboot的主配置类,springboot应该运行这个类里面的main()方法来启动程序
在这里插入图片描述
这个注解主要由三个子注解组成:

  • @SpringBootConfiguration
  • @EnableAutoConfiguration
  • @ComponentScan
    在这里插入图片描述
@SpringBootConfiguration

这个注解包含了@Configuration,@Configuration里面又包含了一个@Component注解,也就是说,这个注解标注在哪个类上,就表示当前这个类是一个配置类,而配置类也是spring容器中的组件
在这里插入图片描述

你可能感兴趣的:(面试,阿里巴巴,android,前端,后端)