Event
Spring Event Publisher / Listener Example
Spring event architecture make event publish and receive so easy. You can just configure event publisher and listener object as Spring beans in application context xml file. And then use them to send and receive event in your java code. This method decoupled java event object relationship if you hardcode them in java application. This …