Annotation Interface TransactionalEventListener
EventListener
that is invoked according to a TransactionPhase
.
This is an annotation-based equivalent of TransactionalApplicationListener
.
If the event is not published within an active transaction, the event is discarded
unless the fallbackExecution()
flag is explicitly set. If a transaction is
running, the event is handled according to its TransactionPhase
.
Adding @Order
to your annotated
method allows you to prioritize that listener amongst other listeners running before
or after transaction completion.
As of 6.1, transactional event listeners can work with thread-bound transactions managed
by a PlatformTransactionManager
as well as reactive
transactions managed by a ReactiveTransactionManager
.
For the former, listeners are guaranteed to see the current thread-bound transaction.
Since the latter uses the Reactor context instead of thread-local variables, the transaction
context needs to be included in the published event instance as the event source:
see TransactionalEventPublisher
.
WARNING: if the TransactionPhase
is set to
AFTER_COMMIT
(the default),
AFTER_ROLLBACK
, or
AFTER_COMPLETION
, the transaction will
have been committed or rolled back already, but the transactional resources might
still be active and accessible. As a consequence, any data access code triggered
at this point will still "participate" in the original transaction, but changes
will not be committed to the transactional resource. See
TransactionSynchronization.afterCompletion(int)
for details.
- Since:
- 4.2
- Author:
- Stephane Nicoll, Sam Brannen, Oliver Drotbohm
- See Also:
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionClass<?>[]
The event classes that this listener handles.Spring Expression Language (SpEL) attribute used for making the event handling conditional.boolean
Whether the event should be handled if no transaction is running.An optional identifier for the listener, defaulting to the fully-qualified signature of the declaring method (e.g.Phase to bind the handling of an event to.Class<?>[]
Alias forclasses()
.
-
Element Details
-
phase
TransactionPhase phasePhase to bind the handling of an event to.The default phase is
TransactionPhase.AFTER_COMMIT
.If no transaction is in progress, the event is not processed at all unless
fallbackExecution()
has been enabled explicitly.- Default:
- AFTER_COMMIT
-
fallbackExecution
boolean fallbackExecutionWhether the event should be handled if no transaction is running.- Default:
- false
-
value
Alias forclasses()
.- Default:
- {}
-
classes
The event classes that this listener handles.If this attribute is specified with a single value, the annotated method may optionally accept a single parameter. However, if this attribute is specified with multiple values, the annotated method must not declare any parameters.
- Default:
- {}
-
condition
Spring Expression Language (SpEL) attribute used for making the event handling conditional.The default is
""
, meaning the event is always handled.- See Also:
- Default:
- ""
-
id
An optional identifier for the listener, defaulting to the fully-qualified signature of the declaring method (e.g. "mypackage.MyClass.myMethod()").- Since:
- 5.3
- See Also:
- Default:
- ""
-