Improve @EventListener documentation in reference manual

Closes gh-26785
This commit is contained in:
Sviatoslav Hryb 2021-04-10 20:38:27 +03:00 committed by Sam Brannen
parent 04ce8e0ac4
commit a80c5fcfaf
1 changed files with 2 additions and 2 deletions

View File

@ -10652,7 +10652,7 @@ architectures that build upon the well-known Spring programming model.
[[context-functionality-events-annotation]]
==== Annotation-based Event Listeners
As of Spring 4.2, you can register an event listener on any public method of a managed
As of Spring 4.2, you can register an event listener on any method of a managed
bean by using the `@EventListener` annotation. The `BlockedListNotifier` can be rewritten as
follows:
@ -10793,7 +10793,7 @@ NOTE: This feature is not supported for
<<context-functionality-events-async, asynchronous listeners>>.
This new method publishes a new `ListUpdateEvent` for every `BlockedListEvent` handled by the
method above. If you need to publish several events, you can return a `Collection` of events
method above. If you need to publish several events, you can return a `Collection` or an `array` of events
instead.