Files
spring-boot-demo/core-events/output/01-publish-is-a-method-call.txt
Claude d6b76c57db Add core-events module: @EventListener, @TransactionalEventListener phases and async listeners on Boot 4.1
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
2026-09-24 07:08:47 +00:00

7 lines
308 B
Plaintext

# OrderService publishes an OrderPlaced; the listeners run before publishEvent returns, on the same thread
OrderService.place: publishing on main
AuditListener.audit: received OrderPlaced[id=A-1, amount=42] on main
AuditListener.counted: no parameter, still called
OrderService.place: publishEvent returned