SpringBoot自动配置实现流程详细分析
作者:4343
这篇文章主要介绍了SpringBoot自动配置原理分析,SpringBoot是我们经常使用的框架,那么你能不能针对SpringBoot实现自动配置做一个详细的介绍。如果可以的话,能不能画一下实现自动配置的流程图。牵扯到哪些关键类,以及哪些关键点
第一种
给容器中的组件加上
@ConfigurationProperties注解即可
测试:
@Component
@ConfigurationProperties(prefix = "mycar")
public class Car {
private String brand;
private Integer price;
private Integer seatNum;
public Integer getSeatNum() {
return seatNum;
}
public void setSeatNum(Integer seatNum) {
this.seatNum = seatNum;
}
public String getBrand() {
return brand;
}
public void setBrand(String brand) {
this.brand = brand;
}
public Integer getPrice() {
return price;
}
public void setPrice(Integer price) {
this.price = price;
}
@Override
public String toString() {
return "Car{" +
"brand='" + brand + '\'' +
", price=" + price +
", seatNum=" + seatNum +
'}';
}
public Car() {
}
}在application.properties中属性:
mycar.seatNum = 4
mycar.brand = BMW
mycar.price = 100000
即可给之后new 的Car 对象自动配置。
运行:
public class MainApplication {
public static void main(String[] args) {
//返回springboot中的ioc容器
ConfigurableApplicationContext run = SpringApplication.run(MainApplication.class, args);
Car car = run.getBean("car", Car.class);
System.out.println(car);
}
}控制台结果:

第二种
第一种的情况下是自己写的类作为组件,实现自动装配的过程;
但有时候使用第三方类的时候无法将其设置为自己的组件,所以就需要用
@EnableConfigurationProperties + @ConfigurationProperties
将Car类删除@Component注解,此时Car类已经不是组件了:
11 usages
@ConfigurationProperties(prefix = "mycar " )
public class Car {
3 usages
private String brand ;
3 usages
private Integer price ;
3 usages
此时,假设Car是第三方提供的类:
对于第三方的类 想要其作为组件就需要@Bean注解,就和之前的SSM项目中配置的bean
标签一样:
SSM中的配置文件中:
<bean id="car" class="xxx.xxx.xxx.Car">
<property name="brand" value=""/>
<property name="price" value=" "/>
<property name="seatNum" value=" "/>
</bean>就等同于SpringBoot中配置类下的:
@Bean
public Car car(){
Car car = new Car();
return car;
}其中属性的赋值就需要在Car类上增加
@ConfigurationProperties(prefix = "mycar")注解
最后在该配置类上使用
@EnableConfigurationProperties(Car.class)注解开启即可
@Configuration(proxyBeanMethods = false)
@EnableConfigurationProperties(Car.class)
public class CarAutoConfiguration {
@Bean
public Car car(){
Car car = new Car();
return car;
}
}控制台显示结果一样:

到此这篇关于SpringBoot自动配置实现流程详细分析的文章就介绍到这了,更多相关SpringBoot自动配置内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
