@AutoConfigureBefore、@AutoConfigureAfter使用细节

背景

我们在定义spring-boot-starter时,有时会使用@AutoConfigureBefore@AutoConfigureAfter来指定自动装配配置之间的加载顺序。

使用此注解要注意两点:

  • 被注解修饰的类要在spring.factories中的org.springframework.boot.autoconfigure.EnableAutoConfiguration指定,不能用@Configuration修饰,否则会立刻被spring扫描到,不能实现指定顺序,之前的文章介绍过
  • @AutoConfigureBefore@AutoConfigureAfter的作用是指定配置类加载的顺序,而不是bean的加载顺序,这点要注意,很多人也是疏忽了这点,本文重点分析的就是此部分

案例

spring.factories

复制代码
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
  test.TestConfig2,\
  test.TestConfig

TestConfig

java 复制代码
public class TestConfig {
    
    public TestConfig(){
        System.out.println("====TestConfig====");
    }
    
    @Bean
    public Base base(){
        System.out.println("====base1====");
        return new Base(1);
    }
}

TestConfig2

java 复制代码
@AutoConfigureBefore(TestConfig.class)
public class TestConfig2 {
    
    public TestConfig2(){
        System.out.println("====TestConfig2====");
    }
    
    @Bean
    public Base base(){
        System.out.println("====base2====");
        return new Base(2);
    }
    
    @Bean
    public Test test(Base base){
        return new Test(base);
    }
}

Test

java 复制代码
public class Test {
    private Base base;
    
    public Test(Base base){
        this.base = base;
    }

    @PostConstruct
    public void init(){
        System.out.println("====" + base.i + "====");
    }
}
  • TestConfigTestConfig2使用自动装配配置
  • TestConfigTestConfig2都生成了类型Base,名字base的bean对象
  • TestConfig2使用@AutoConfigureBefore指定在TestConfig之前进行加载
  • TestConfig2生成了类型Test,名字test的bean对象并注入了类型Bean的bean对象

结果

复制代码
====TestConfig2====
====TestConfig====
====base1====
====1====

结论

  • @AutoConfigureBefore可以指定TestConfig2TestConfig之前进行生成加载
  • 但不能指定@Bean生成对象的顺序,这里看到注入的Base类型对象是TestConfig生成的

那么要指定bean的加载顺序怎么做?

可以用@ConditionalOnMissingBean注解

案例中只修改TestConfig,其余不变

TestConfig

java 复制代码
public class TestConfig {
    
    public TestConfig(){
        System.out.println("====TestConfig====");
    }
    
    @Bean
    @ConditionalOnMissingBean
    public Base base(){
        System.out.println("====base1====");
        return new Base(1);
    }
}

结果

复制代码
====TestConfig2====
====base2====
====2====
====TestConfig====

可以看到可以通过@ConditionalOnMissingBean来控制bean对象的加载顺序

相关推荐
风象南7 小时前
很多人说,AI 让技术平权了,小白也能乱杀老师傅 ?
人工智能·后端
雨中飘荡的记忆9 小时前
ElasticJob分布式调度从入门到实战
java·后端
Se7en2589 小时前
推理平台全景
后端
大漠_w3cpluscom9 小时前
你学不会 CSS,不是笨,是方向错了
后端
cipher12 小时前
ERC-4626 通胀攻击:DeFi 金库的"捐款陷阱"
前端·后端·安全
毅航13 小时前
自然语言处理发展史:从规则、统计到深度学习
人工智能·后端
JxWang0513 小时前
Task04:字符串
后端
树獭叔叔14 小时前
10-让模型更小更聪明,学而不忘:知识蒸馏与持续学习
后端·aigc·openai
JxWang0514 小时前
Task02:链表
后端