一、介绍
InitializingBean是Spring框架提供的一个接口,用于在Bean初始化完成后
执行特定的初始化逻辑。
二、使用
1、使用方法
1.1、实现InitializingBean接口
可以让Bean实现该接口,并重写其afterPropertiesSet()方法
1.2、注册
也即让bean初始化。方法有:
(1)@Component 及其拓展注解如@Controller、@Service、@Repository、@Configuration;
(2)@Bean注解