-
Notifications
You must be signed in to change notification settings - Fork 38.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make TransactionalApplicationListenerAdapter support fallbackExecution #34674
Comments
Would it also work if you declare your Also, would you actually use the exposure of that flag on |
I tried this way before creating this issue, but the listener method is never called. Is that supposed to work? IMO, that would be the most elegant way of handling this use case.
Adding the capability only to |
Let's try to find out why If |
I have the following use case.
I have a bean that should act as a multi node event router.
The bean must listen for a particular event interface and broadcast a received event to the other nodes. If a transaction is running, event should be broadcast after commit. If there is no transaction, the event should be immediatly broadcast.
The event interface looks like this:
The router looks like this:
The obvious issue with this code is that the routers (plural because 1 router/node) may enter in an infinite broadcast loop. The easiest solution that comes to mind is to make the router check the event source and ignore the event if the source is itself. But since I am listening for a raw event, I don't have access to
ApplicationEvent
informations.I know that under the cover, Spring use
PayloadApplicationEvent
for raw events. So I try to implement the infinite loop guard like this:But when I do this, I loose
TransactionalApplicationListenerMethodAdapter#fallbackExecution
feature.Could we add this feature to
TransactionalApplicationListenerAdapter
and pass its activation as an argument toTransactionalApplicationListener#forPayload
?The text was updated successfully, but these errors were encountered: