Spring Framework Event Handling: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 42: | Line 42: | ||
<syntaxhighlight lang='java'> | <syntaxhighlight lang='java'> | ||
applicationContext.addApplicationListener(...); | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 21:29, 23 November 2018
External
Internal
TO PROCESS
Overview
One of application context's capabilities is to handle events. The events are by default synchronous, which has a few advantages, one of them being the fact that the listener is able to participated in the publisher's transaction context.
Threading Consideration
Spring event handling is single threaded and synchronous in nature. If an event is published, until and unless all receivers get the message, the processes are blocked and the flow will not continue.
Event
Events are instances extending ApplicationEvent.
Standard Events
- ContextStartedEvent
- ContextStoppedEvent
Custom Event
Publisher
Events can be published using publishers. Any custom publisher should inject an ApplicationEventPublisher object.
Application Event Listener
Listeners should implement the ApplicationListener interface.
Adding Application Listeners
applicationContext.addApplicationListener(...);