Skip to content

Files

Latest commit

Oct 14, 2022
6fd3717 · Oct 14, 2022

History

History

100-application-context-extend

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 28, 2022
Sep 28, 2022
Sep 28, 2022
Oct 14, 2022

100-application-context-extention

上下文刷新前扩展点ApplicationContextInitializer,如实现在上下文初始化前指定激活的配置文件

核心知识点:

  • 三种注册方式
    • SpringBoot启动时注册 (优先级最低)
    • SPI注册 (其次)
    • 配置文件注册 (优先级最高)
  • 加载顺序
    • 相同注册方式,可以根据 @Order 注解来指定加载顺序

相关博文: