06-spring的beanFactoryPostProcessor的执行

文章目录

  • 1. 接口BeanFactoryPostProcessor
    • 1.1 英文说明及要点
  • 2. BeanDefinitionRegistryPostProcessor
  • 3. 执行逻辑
  • 4. 几个重要实现类

1. 接口BeanFactoryPostProcessor

1.1 英文说明及要点

Factory hook that allows for custom modification of an application context’s bean definitions, adapting the bean property values of the context’s underlying bean factory.

主要作用是对BeanDefinition进行修改

Useful for custom config files targeted at system administrators that override bean properties configured in the application context. See PropertyResourceConfigurer and its concrete implementations for out-of-the-box solutions that address such

你可能感兴趣的:(#,spring源码学习笔记,spring,java,后端)