在此系列文章中,我总结了Spring扩展接口,以及各个扩展点的使用场景。并整理出一个bean在spring中从被加载到初始化到销毁的所有可扩展点的顺序调用图。这样,我们也可以看到bean是如何一步步加载到spring容器中的。
org.springframework.context.ApplicationContextInitializer
ApplicationContextInitializer是Spring框架中的一个扩展接口,用于在应用程序上下文(ApplicationContext)创建之前对其进行自定义初始化。通过实现该接口,您可以在应用程序上下文启动之前执行一些额外的配置或准备工作。
实现ApplicationContextInitializer接口需要实现其唯一的方法initialize
,该方法接受一个泛型参数C extends ConfigurableApplicationContext
,表示正在创建的应用程序上下文。在该方法中,您可以对应用程序上下文进行各种自定义操作,例如添加属性源、注册Bean定义、设置环境变量等。
下面是一个示例,展示了如何实现一个ApplicationContextInitializer来添加一个自定义的属性源:
import org.springframework.context.ApplicationContextInitializer;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.core.env.MapPropertySource;
import org.springframework.core.env.MutablePropertySources;
import java.util.HashMap;
import java.util.Map;
public class CustomApplicationContextInitializer implements ApplicationContextInitializer<ConfigurableApplicationContext> {
@Override
public void initialize(ConfigurableApplicationContext applicationContext) {
MutablePropertySources propertySources = applicationContext.getEnvironment().getPropertySources();
// 创建自定义的属性源
Map<String, Object> customProperties = new HashMap<>();
customProperties.put("custom.property", "custom value");
MapPropertySource customPropertySource = new MapPropertySource("customPropertySource", customProperties);
// 将自定义属性源添加到应用程序上下文的属性源列表中
propertySources.addFirst(customPropertySource);
}
}
由于这时候spring容器还没被初始化,所以想要自己的扩展的生效,有以下三种方式:
@SpringBootApplication
public class SandySpringExApplication {
public static void main(String[] args) {
SpringApplication application = new SpringApplication(SandySpringExApplication.class);
application.addInitializers(new CustomApplicationContextInitializer()); // 直接在SpringApplication中添加
application.run(args);
}
}
# application.properties文件
context.initializer.classes = com.example.demo.CustomApplicationContextInitializer
在resources/META-INF添加spring.factories:
org.springframework.context.ApplicationContextInitializer = com.sandy.springex.applicationcontextinitializer.CustomApplicationContextInitializer
我们希望将这些rpc结果数据缓存起来,并在一定时间后自动删除,以实现在一定时间后获取到最新数据。类似Redis的过期时间。本文是我的调研步骤和开发过程。