Bean对象创建过程
我们知道,在Spring容器中,Bean的创建过程需要经历以下阶段,大致包括创建实例,填充属性,执行回调方法(init-method方法)
通常有三种方法编写回调方法
Xml配置
在Xml文件中配置bean,bean标签中加上init属性,值为对应类的回调方法
@Slf4j
@Component
public class Car {
public void initMethod(){
System.out.println("Car初始化方法调用 ");
}
}
xml文件内容
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id ="car" class="com.ti.service.Car" init-method="initMethod"></bean>
</beans>
实现InitializingBean接口
通过实现InitializingBean接口的afterPropertiesSet()
方法
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.stereotype.Component;
@Component
@Slf4j
public class Person implements InitializingBean {
public Person(){
log.info("Person 构造方法调用");
}
@Override
public void afterPropertiesSet() throws Exception {
log.info("Person 创建完毕,执行回调方法");
}
}
使用@PostConstruct注解
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
@Component
@Slf4j
public class Animal {
@PostConstruct
public void afterCons(){
log.info("Animal 后置方法调用");
}
}
总结
这里的三种方式都可以实现回调方法,但在Spring Boot项目中,更推荐使用后两种方式,实现起来也更简便
另外,三种方法也可以同时存在,互不影响,三种方式的实现调用顺序如下
1.@PostConstruct
2.InitializingBean 的afterPropertiesSet() 方法
3.init-method