@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对象的加载顺序

相关推荐
想用offer打牌2 小时前
MCP (Model Context Protocol) 技术理解 - 第二篇
后端·aigc·mcp
KYGALYX4 小时前
服务异步通信
开发语言·后端·微服务·ruby
掘了4 小时前
「2025 年终总结」在所有失去的人中,我最怀念我自己
前端·后端·年终总结
爬山算法4 小时前
Hibernate(90)如何在故障注入测试中使用Hibernate?
java·后端·hibernate
Moment5 小时前
富文本编辑器在 AI 时代为什么这么受欢迎
前端·javascript·后端
Cobyte5 小时前
AI全栈实战:使用 Python+LangChain+Vue3 构建一个 LLM 聊天应用
前端·后端·aigc
程序员侠客行6 小时前
Mybatis连接池实现及池化模式
java·后端·架构·mybatis
Honmaple6 小时前
QMD (Quarto Markdown) 搭建与使用指南
后端
PP东7 小时前
Flowable学习(二)——Flowable概念学习
java·后端·学习·flowable
invicinble7 小时前
springboot的核心实现机制原理
java·spring boot·后端