InitializingBean的使用

Spring中Bean的初始化方式有两种:
1、实现InitializingBean接口
该接口为bean提供了初始化方法的方式,它只包括afterPropertiesSet方法,凡是继承该接口的类,在初始化bean的时候会执行该方法。
2、利用类反射原理,加载配置文件,使用init-method标签直接注入bean。(@Bean)

package com.example.microservice;

import org.springframework.beans.factory.InitializingBean;
import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;

@Component
public class TestInitializingBean implements InitializingBean {

    public TestInitializingBean() {
        System.out.println("method: 构造方法");
    }

    @Override
    public void afterPropertiesSet() throws Exception {
        System.out.println("method: afterPropertiesSet");
    }

    @PostConstruct
    void postConstruct() {
        System.out.println("method: postConstruct");
    }

执行结果:
在这里插入图片描述

这里就不使用xml配置了,毕竟SpringBoot还是比配置化的好用的

package com.example.microservice;

import org.springframework.beans.factory.InitializingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;

//@Component
public class TestInitializingBean implements InitializingBean {

    public TestInitializingBean() {
        System.out.println("method: 构造方法");
    }

    @Override
    public void afterPropertiesSet() throws Exception {
        System.out.println("method: afterPropertiesSet");
    }

    void init () {
        System.out.println("method: init");
    }

    void destroy() {
        System.out.println("method: destroy");
    }

    @PostConstruct
    void postConstruct() {
        System.out.println("method: postConstruct");
    }

}

执行结果:
在这里插入图片描述

总结:
spring bean的初始化执行顺序:构造方法 -> @PostConstruct注解的方法 -> afterPropertiesSet方法 --> init-method指定的方法。
afterPropertiesSet通过接口实现方式调用(效率上高一点),@PostConstruct和init-method都是通过反射机制调用

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值