gpt4 book ai didi

java - 捕捉spring初始化所有bean的时刻

转载 作者:IT老高 更新时间:2023-10-28 13:46:14 27 4
gpt4 key购买 nike

我有 spring 应用程序(我没有懒 bean)。

我想在所有 @Component(@Repositoey @Service @Controller) bean 初始化时插入逻辑。

我该怎么做?

最佳答案

this question 的回答中所述,您可以使用 ApplicationListener 并查找 ContextRefreshedEvent :

public class Loader implements ApplicationListener<ContextRefreshedEvent>{

public void onApplicationEvent(ContextRefreshedEvent event) {
// whatever you want to do when app context is initialized or refreshed
}
}

关于java - 捕捉spring初始化所有bean的时刻,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19541600/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com