springboot自动装配原理

首先我们介绍一些  springboot的一些主要注解:

@Configuration  用于声明定义bean 熟悉spring的应该都明白  这也是springboot自动装配关键的注解之一 其实就是平常Spring配置文件中我们写的bean 

@EnableAutoConfiguration 用来开启springboot自动配置的注解 ,这个也是自动装配中很重要的注解

@ConfigurationProperties  用来读取配置文件 并封装成实体类

@EnableConfigurationProperties 这个一般要配合@ConfigurationProperties使用  可以使@ConfigurationProperties封装成的实体类成功注入(前提是@ConfigurationProperties的实体类没有被@Component注解)

除了这些注解 还有许多其他注解 就不一一阐述。

接下来我们就从springboot的启动类开始讲解springboot自动装配的原理

 这里我们看到启动类中的注解@SpringBootApplication 这其实是一个组合注解

springboot自动装配原理_第1张图片

 

@SpringBootApplication中有3个主要注解 1.@SpringBootConfiguration 2.@ComponentScan 3.@EnableAutoConfiguration

我们依次讲解:

首先讲解一下@SpringBootConfiguration这个注解 这个其实就是上面介绍过的@Configuration的注解 用于定义bean的,springboot的启动类其实也就是作为spring的一个bean注入到spring容器中。

@ComponentScan 是spring中的注解 主要就是定义扫描的路径从中找出标识了需要装配的类自动装配到spring的bean容器中

接下里就是@EnableAutoConfiguration这个注解 这个是开启自动装配的核心注解,他的作用就是获取配置类 扫描并注入IOC容器中进行管理,他也是组合注解  我们点进去看又能看到

@AutoConfigurationPackage 和@Import 这2个注解
springboot自动装配原理_第2张图片

 

 

@AutoConfigurationPackage  添加该注解的类所在的package 作为 自动配置package 进行管理,个人的理解吧  我觉得这个注解的含义就是扫描springboot所在包 将其配置类交给IOC管理。

@Import({AutoConfigurationImportSelector.class}) 这个导入AutoConfigurationImportSelector.class这个类,将其注入spring容器  而这个导入的类的作用可以帮助将所有符合条件的@Configuration配置交给spring的IOC容器进行注入。

这里面有个selectImports方法 里
 

public String[] selectImports(AnnotationMetadata annotationMetadata) {
        if (!this.isEnabled(annotationMetadata)) {
            return NO_IMPORTS;
        } else {
            AutoConfigurationImportSelector.AutoConfigurationEntry autoConfigurationEntry = this.getAutoConfigurationEntry(annotationMetadata);
            return StringUtils.toStringArray(autoConfigurationEntry.getConfigurations());
        }
    }

里面调用了一个getCandidateConfigurations方法,就是用来获取  META-INF/spring.factories中配置文件中的需要自动装配的类名,配置文件如下图 

 

这些类基本都是被@Configuration注解的 

简而言之,就是Spring Boot在启动的时候就是从类路径下的META-INF/spring.factories中获取需要自动装配的类  (一些配置组件),找到这些类(XXXAutoConfiguration),通过SpringFactoriesLoader机制创建对应的bean,注入到容器中,完成了自动注入spring容器,本来需要在spring的xml配置文件中去配置bean的操作就免去了 ,也就是springboot完成了自动装配。

你可能感兴趣的:(spring,boot,spring,java)