Spring中Bean的生命周期回调方法

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值