Spring callback methods
Callback method: A callback method in java is a method which is called when an event occurs. Normally we can implement that by passing an implementation of a certain interface to the system which is responsible for triggering the event. Commonly used callback methods in spring: Post-initialization callback methods: Using InitializingBean interface: The InitializingBean interface … Read more