Package com.bobocode.bring.core.bfpp
Interface BeanFactoryPostProcessor
- All Known Implementing Classes:
ConfigurationClassPostProcessor
,ValuePropertiesPostProcessor
public interface BeanFactoryPostProcessor
Interface to modify the bean factory before bean instantiation.
Usage:
To utilize this interface:
- Implement the postProcessBeanFactory method to define the logic to modify the bean factory.
Then, add annotation @BeanProcessor and Bring will automatically pick it up.
- Since:
- 1.0
- Author:
- Blyzhnytsia Team
-
Method Summary
Modifier and TypeMethodDescriptionvoid
postProcessBeanFactory
(DefaultBringBeanFactory defaultBeanFactory) Modify the application context's internal bean factory.
-
Method Details
-
postProcessBeanFactory
Modify the application context's internal bean factory.- Parameters:
defaultBeanFactory
- The bean factory being initialized
-