What is the difference between implementing the BeanPostProcessor interface and either using the init/destroy method attributes in the XML configuration file in Spring or implementing InitializingBean/DisposableBean interface?
|
This is pretty clearly explained in the Spring documentation about the Container Extension Points.
So in essence the method The difference to the So basically the BeanPostProcessor can be used to do custom instantiation logic for several beans wheras the others are defined on a per bean basis. |
|||
|
|
|
BeanPostProcessor: A BeanPostProcessor gives you a chance to process an instance of a bean created by the IoC container after it's instantiation and then again after the initialization lifecycle event has occurred on the instance. You could use this to process fields that were set, perform validation on a bean, or even look up values from a remote resource to set on the bean as defaults. BeanPostProcessors and any beans they depend on are instantiated before any other beans in the container. After they are instantiated and ordered, they are used to process all the other beans as they are instantiated by the IoC container. Spring's different AOP proxies for caching, transactions, etc. are all applied by BeanPostProcessors. So, any BeanPostProcessor you create isn't eligible for AOP proxies. Since AOP proxies are applied this way, it's possible an AOP proxy may not yet have been applied to the instance so care should be taken if this will affect any post processing being done. init/destroy method: In Spring, you can use init-method and destroy-method as attribute in bean configuration file for bean to perform certain actions upon initialization and destruction. Here’s an example to show you how to use init-method and destroy-method.
|
|||
|
|
|
Above answers clearly explains some of the very important aspect. Apart from that it's also important to understand that both beanPostProcessor and init and destroy methods are part of the Spring bean life cycle. BeanPostProcessor class has two methods. 1) postProcessBeforeInitialization - as name clearly says that it's used to make sure required actions are taken before initialization. e.g. you want to load certain property file/read data from the remote source/service. 2) postProcessAfterInitialization - any thing that you want to do after initialization before bean reference is given to application. Sequence of the questioned methods in life cycle as follows : 1) BeanPostProcessor.postProcessBeforeInitialization() 2) init() 3) BeanPostProcessor.postProcessAfterInitialization() 4) destroy() You may check this by writing simple example having sysout and check their sequence. |
|||
|
|