spring -- BeanPOSTProcessor

BeanPOSTProcessor是什么?

  BeanPOSTProcessor是Spring所提供的一种扩展机制,可以利用该机制对Bena进行定制化加工,在spring底层源码实现中,也广泛地用到了该机制,BenaPOSTProcessor通常也叫作Bean后置处理器。

  BeanPOSTProcessor在Spring中是一个接口,我们定义一个后置处理器,就是提供一个类实现该接口,在Spring中 还存在一些接口继承了BeanPOSTProcessor,这些子接口是在BeanPOSTProcessor的基础上增加了一些其他功能。

BeanPOSTProcessor的几种方法

  POSTProcessBeforelnitiallzation():初始化前方法,表示可以利用这个方法来对Bean在初始化前进行自定义加工。

  postProcessAfterlnltlallzation():初始化后方法,表示可以利用这个方法来对Bean在初始化后进行自定义加工。

  postProcessProperties():属性注入后。

上一篇:Spring扩展点之BeanPostProcessor


下一篇:spring系列---【后置处理器之BeanPostProcessor】