Thirteen captured transcripts: a listener is a blocking method call, ordering and chaining, SpEL conditions, generic-event erasure, every transaction phase on commit and rollback, what an AFTER_COMMIT listener can write, which exceptions reach the publisher, async listeners on platform and virtual threads, and the annotations behind Spring Modulith's @ApplicationModuleListener. Co-Authored-By: Claude Sonnet 5 <[email protected]> Claude-Session: https://claude.ai/code/session_01Uu7q8vPeREyT4218EJPzz1
6 lines
300 B
Plaintext
6 lines
300 B
Plaintext
# Two async listeners for an event published inside a transaction
|
|
|
|
@Async @EventListener: transaction active on this thread: false; row visible: false
|
|
AsyncOrderService.place: leaving the method, commit follows
|
|
@Async @TransactionalEventListener(AFTER_COMMIT): on a virtual thread; row visible: true
|