Showing posts with label BeanPostProcessor. Show all posts
Showing posts with label BeanPostProcessor. Show all posts

March 10, 2017

#Spring part 4 : BeanFactoryPostProcessor and BeanPostProcessor..

BeanPostProcessor tells Spring to do some processing after initialization beans.

BeanPostProcessor is interface which defines callback methods, with these methods we can tell Spring to do some processing after initialization of beans. This allows you to add some custom logic before and after spring bean creation.