Spring之Bean的生命周期过程中调用的方法

1。这个部分除了6,9都在这了

java 复制代码
package com.example.springbootdemo3.lifebeean;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.*;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;

/**
 * description
 *
 * @author PC 2025/02/27 20:26
 */
@Component
public class MyBeanLife implements BeanNameAware, BeanFactoryAware, ApplicationContextAware, InitializingBean, DisposableBean {


    private String name;

    // 构造函数,当Bean被实例化时调用
    public MyBeanLife() {
        System.out.println("1.调用了Bean的构造函数");
    }

    @Value("name")
    public void setName(String name) {
        this.name = name;
        System.out.println("2.调用了Bean的set方法(属性的依赖注入)");
    }

    @Override
    public void setBeanName(String s) {
        System.out.println("3.调用了BeanNameAware的setBeanName方法,beanName:" + s);
    }

    @Override
    public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
        System.out.println("4.调用了BeanFactoryAware的setBeanFactory方法,beanFactory:" + beanFactory.toString());
    }

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        System.out.println("5.调用了ApplicationContextAware的setApplicationContext方法,applicationContext:" + applicationContext.toString());
    }

    @PostConstruct
    public void postConstruct() {
        System.out.println("7.调用了@PostConstruct注解的方法");
    }

    @Override
    public void afterPropertiesSet() throws Exception {
        System.out.println("8.调用了InitializingBean的afterPropertiesSet方法");
    }

    @PreDestroy
    public void preDestroy() {
        System.out.println("10.调用了@PreDestroy注解的方法");
    }

    @Override
    public void destroy() throws Exception {
        System.out.println("11.调用了DisposableBean的destroy方法");
    }
}

2. 6和9部分

BeanPostProcessor的两个方法是所有Bean都会调用,除了实现这个接口的Bean,所以为了方便加了判断

java 复制代码
package com.example.springbootdemo3.lifebeean;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.stereotype.Component;

/**
 * description
 *
 * @author PC 2025/02/27 21:00
 */
@Component
public class MyBeanLife2 implements BeanPostProcessor {
    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
        if (!beanName.equals("myBeanLife")) {
            return bean;
        }
        System.out.println("6.调用了BeanPostProcessor的postProcessBeforeInitialization方法,beanName:" + beanName);
        return bean;
    }

    @Override
    public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
        if (!beanName.equals("myBeanLife")) {
            return bean;
        }
        System.out.println("9.调用了BeanPostProcessor的postProcessAfterInitialization方法,beanName:" + beanName);
        return bean;
    }
}
相关推荐
C语言不精4 分钟前
c语言-优雅的多级菜单设计与实现
c语言·开发语言·算法
geekmice4 分钟前
thymeleaf处理参数传递问题
开发语言·lua
哈哈哈笑什么5 分钟前
企业级CompletableFuture并行化完整方案,接口从10s到100ms
java·后端·spring cloud
LNN20226 分钟前
Qt 5.8.0 下实现触摸屏热插拔功能的探索与实践(2)
开发语言·qt
董世昌418 分钟前
箭头函数和普通函数有什么区别
开发语言·javascript·ecmascript
AI科技星11 分钟前
张祥前统一场论:引力场与磁矢势的关联,反引力场生成及拉格朗日点解析(网友问题解答)
开发语言·数据结构·经验分享·线性代数·算法
β添砖java12 分钟前
python第一阶段第八章文件操作
开发语言·python
C雨后彩虹12 分钟前
最少交换次数
java·数据结构·算法·华为·面试
i***118622 分钟前
【MyBatisPlus】MyBatisPlus介绍与使用
java
-森屿安年-28 分钟前
二叉平衡树的实现
开发语言·数据结构·c++