码迷,mamicode.com
首页 > 其他好文 > 详细

注意@Bean中的initMethod和destroyMethod

时间:2017-11-30 21:41:15      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:注意   括号   style   ini   method   des   代码   bean   col   

@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

标签:注意   括号   style   ini   method   des   代码   bean   col   

原文地址:http://www.cnblogs.com/1540340840qls/p/7931816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!