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

相关推荐
子兮曰2 天前
jev-ultrafast 深度解析:7 秒订机票的浏览器 Agent 是如何炼成的
前端·后端·agent
子兮曰2 天前
Jev 爆发一周:7 秒 Agent 背后的 System One 生态与三场争议
前端·后端·ai编程
爱勇宝2 天前
ZCode 开源 24 小时:一份没有历史的账本,回答不了"有没有偷代码"
前端·后端·chatglm (智谱)
胡写代码2 天前
别再前后端各写一套表单校验了
java·后端
大勇前进2 天前
原生 PHP 还是 Laravel?小项目到底要不要上框架
后端
yuzhi_liu2 天前
我用 LangGraph4j 实现 Multi-Agent Supervisor
后端
alsmile2 天前
Node-RED 之外,国产规则引擎的新方案:基于标准语法,Go 先行实现
后端·开源·go
大白802 天前
PHP 内存溢出排查思路:看懂报错日志,精准定位问题
后端
二月龙2 天前
PHP 接口返回统一响应封装,让前后端对接更省心
后端
盖伦发发2 天前
软件工程SOLID 五大设计原则
后端·软件工程