注意@Bean中的initMethod和destroyMethod

Posted 技术让世界更精彩

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了注意@Bean中的initMethod和destroyMethod相关的知识,希望对你有一定的参考价值。

@Configuration
public class AppConfig {
@Bean(initMethod = "init")
public Foo foo() {
return new Foo();
}
@Bean(destroyMethod = "cleanup")
public Bar bar() {
return new Bar();
}
}

上述代码中initMethod和destroyMethod后面没有括号。

记住千万不要带括号。

以上是关于注意@Bean中的initMethod和destroyMethod的主要内容,如果未能解决你的问题,请参考以下文章

spring中Bean的初始化和销毁方法

Spring注解 - 生命周期属性赋值自动装配

Spring中与bean有关的生命周期

Spring---Bean的生命周期

Spring Boot实战笔记-- Spring常用配置(Bean的初始化和销毁Profile)

Bean的初始化回调方法和释放资源的回调方法