Learning the code way
A small step towards sharing what I have learned.
Sunday, 29 April 2012
Bean Creation via Factory Method
›
The Spring Container does not have to instantiate beans via using the new keyword . Some times objects are created from factories . There a...
7 comments:
Thursday, 26 April 2012
Using BeanPostProcessors
›
Spring provides us with BeanPostProcessor classes that can be used to process beans before and after they have been configured by the conta...
Tuesday, 24 April 2012
Creating default init and destroy methods
›
In earlier post we saw how Spring allowed us to define custom init and destroy methods - both via configuration and via code .As we are w...
Monday, 23 April 2012
The InitializingBean and DisposableBean Interfaces
›
In our previous post we saw how the Spring container used custom initialization and destroy methods. An alternative way to achieve the sam...
Saturday, 21 April 2012
Custom Bean Initialization and Destroy Methods
›
It is possible that we may need to execute some initialization code when the bean has been initialized successfully by the Spring Container...
‹
›
Home
View web version