飞奔的炮台 发表于 2021-10-7 11:45:08

Spring容器扩展机制的实现原理

这篇文章主要介绍了Spring容器扩展机制的实现原理,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
ioc 容器负责管理容器中所有 bean 的生命周期, 而在 bean 生命周期的不同阶段, spring 提供了不同的扩展点来改变 bean 的命运. 在容器的启动阶段, beanfactorypostprocessor 允许我们在容器实例化相应对象之前, 对注册到容器的 beandefinition 所保存的信息做一些额外的操作, 比如修改 bean 定义的某些属性或者增加其他信息等.
beanpostprocessor 接口
如果希望在spring容器完成实例化、配置和初始化bean之后实现某些自定义逻辑, 则可以实现一个或多个 beanpostprocessor 接口.


public interface beanpostprocessor {

@nullable
default object postprocessbeforeinitialization(object bean, string beanname) throws beansexception {
    return bean;
}

@nullable
default object postprocessafterinitialization(object bean, string beanname) throws beansexception {
    return bean;
}

}
在 bean 实例化之后会先执行 postprocessbeforeinitialization 方法, 再执行 bean 的初始化方法, 然后在执行 postprocessafterinitialization 方法.
ordered 接口 @order 注解
此接口只有一个方法 int getorder(); 用来设置执行顺序.
如果实现多个 beanpostprocessor 接口, 我们就可以实现 ordered 接口来设置执行顺序.


@component
public class test implements beanpostprocessor, ordered {

@override
public object postprocessbeforeinitialization(object bean, string beanname) throws beansexception {
    return bean;
}

@override
public object postprocessafterinitialization(object bean, string beanname) throws beansexception {
    return bean;
}

@override
public int getorder() {
    return 1;
}
}
也可以使用 @order 注解进行排序


@configuration
@order(2)
public class demo1config {
@bean
public demo1service demo1service(){
    system.out.println("demo1config 加载了");
    return new demo1service();
}

}
beanfactorypostprocessor 接口
在容器实例化相应对象之前, 对注册到容器的 beandefinition 所保存的信息做一些额外的操作可以实现此接口.
区别

[*]beanfactorypostprocessor 会处理一些元数据.
[*]beanpostprocessor 会处理实例化后的对象.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持CodeAE代码之家。
原文链接:https://segmentfault.com/a/1190000017197635

http://www.zzvips.com/article/171349.html
页: [1]
查看完整版本: Spring容器扩展机制的实现原理