spring-boot-event-driven-patterns
giuseppe-trisciuoglio/developer-kit
Event-Driven Architecture patterns for Spring Boot with domain events, Kafka, and transactional outbox.
What is spring-boot-event-driven-patterns?
Implements Event-Driven Architecture (EDA) in Spring Boot 3.x using domain events, ApplicationEventPublisher, @TransactionalEventListener, and Kafka for distributed messaging. Use when building event-driven microservices, publishing domain events from DDD aggregates, or ensuring reliable event delivery with the transactional outbox pattern.
- Design and publish immutable domain events from aggregate roots
- Configure @TransactionalEventListener for reliable event handling after database commits
- Set up Kafka producers and consumers with Spring Kafka and Spring Cloud Stream
- Implement the transactional outbox pattern for atomic event storage and reliable delivery
- Handle failure scenarios with retry logic, dead-letter queues, and idempotent handlers
- Add distributed tracing and observability with Spring Cloud Sleuth
How to install spring-boot-event-driven-patterns
npx skills add https://github.com/giuseppe-trisciuoglio/developer-kit --skill spring-boot-event-driven-patterns- Spring Boot 3.x
- Kafka broker running (local or remote)
- Spring Kafka and Spring Cloud Stream dependencies
- Database for outbox pattern (JPA/Hibernate)
How to use spring-boot-event-driven-patterns
- 1.Design domain events by creating immutable classes extending DomainEvent base class with eventId, occurredAt, and correlationId
- 2.Add domain events to aggregate roots and publish them via ApplicationEventPublisher after saving
- 3.Configure @TransactionalEventListener with phase=AFTER_COMMIT to handle events reliably after transaction commits
- 4.Set up Kafka configuration in application.yml with bootstrap-servers and serializers
- 5.Implement @KafkaListener methods to consume events from Kafka topics
- 6.Create OutboxEvent entity and scheduled processor to implement the transactional outbox pattern for reliability
- 7.Add retry logic with @RetryableTopic and dead-letter queue configuration for failed events
- 8.Enable Spring Cloud Sleuth for distributed tracing across event-driven flows
Use cases
- Refactoring monolithic synchronous calls to async event-based communication between services
- Publishing domain events when order or product aggregates are created or modified
- Ensuring reliable event delivery across microservices using the outbox pattern
- Setting up Kafka topics for product events, order events, and inventory updates
- Implementing event handlers that execute after transaction commits to avoid partial failures
- Spring Boot developers building event-driven microservices
- Domain-Driven Design (DDD) practitioners implementing aggregate roots with events
- Architects designing asynchronous messaging systems with Kafka
- Teams migrating from synchronous to event-driven architectures
spring-boot-event-driven-patterns FAQ
Use @TransactionalEventListener for local, in-process event handling within the same service after transaction commits. Use @KafkaListener for distributed event consumption across microservices via Kafka topics.
The outbox pattern stores events atomically with business data in the same database transaction, then a scheduled processor publishes them to Kafka. This ensures events are never lost even if the service crashes between saving data and publishing events.
Implement idempotent handlers by checking if the event was already processed using the eventId, or design handlers to be safe when executed multiple times with the same event data.
Use past tense naming like ProductCreated, OrderShipped, PaymentProcessed (not CreateProduct or ShipOrder) to reflect that events represent things that have already happened.
Include a correlationId in all domain events and propagate it through event handlers and Kafka messages. Enable Spring Cloud Sleuth to automatically trace the correlation ID across service boundaries.
Full instructions (SKILL.md)
Source of truth, from giuseppe-trisciuoglio/developer-kit.
name: spring-boot-event-driven-patterns description: Provides Event-Driven Architecture (EDA) patterns for Spring Boot — creates domain events, configures ApplicationEvent and @TransactionalEventListener, sets up Kafka producers and consumers, and implements the transactional outbox pattern for reliable distributed messaging. Use when implementing event-driven systems in Spring Boot, setting up async messaging with Kafka, publishing domain events from DDD aggregates, or needing reliable event publishing with the outbox pattern. allowed-tools: Read, Write, Edit, Bash
Spring Boot Event-Driven Patterns
Overview
Implement Event-Driven Architecture (EDA) patterns in Spring Boot 3.x using domain events, ApplicationEventPublisher, @TransactionalEventListener, and distributed messaging with Kafka and Spring Cloud Stream.
When to Use
- Implementing event-driven microservices with Kafka messaging
- Publishing domain events from aggregate roots in DDD architectures
- Setting up transactional event listeners that fire after database commits
- Adding async messaging with producers and consumers via Spring Kafka
- Ensuring reliable event delivery using the transactional outbox pattern
- Replacing synchronous calls with event-based communication between services
Quick Reference
| Concept | Description |
|---|---|
| Domain Events | Immutable events extending DomainEvent base class with eventId, occurredAt, correlationId |
| Event Publishing | ApplicationEventPublisher.publishEvent() for local, KafkaTemplate for distributed |
| Event Listening | @TransactionalEventListener(phase = AFTER_COMMIT) for reliable handling |
| Kafka | @KafkaListener(topics = "...") for distributed event consumption |
| Spring Cloud Stream | Functional programming model with Consumer beans |
| Outbox Pattern | Atomic event storage with business data, scheduled publisher |
Examples
Monolithic to Event-Driven Refactoring
Before (Anti-Pattern):
@Transactional
public Order processOrder(OrderRequest request) {
Order order = orderRepository.save(request);
inventoryService.reserve(order.getItems()); // Blocking
paymentService.charge(order.getPayment()); // Blocking
emailService.sendConfirmation(order); // Blocking
return order;
}
After (Event-Driven):
@Transactional
public Order processOrder(OrderRequest request) {
Order order = Order.create(request);
orderRepository.save(order);
// Publish event after transaction commits
eventPublisher.publishEvent(new OrderCreatedEvent(order.getId(), order.getItems()));
return order;
}
@Component
public class OrderEventHandler {
@TransactionalEventListener(phase = TransactionPhase.AFTER_COMMIT)
public void handleOrderCreated(OrderCreatedEvent event) {
// Execute asynchronously after the order is saved
inventoryService.reserve(event.getItems());
paymentService.charge(event.getPayment());
}
}
See examples.md for complete working examples.
Instructions
1. Design Domain Events
Create immutable event classes extending a base DomainEvent class:
public abstract class DomainEvent {
private final UUID eventId;
private final LocalDateTime occurredAt;
private final UUID correlationId;
}
public class ProductCreatedEvent extends DomainEvent {
private final ProductId productId;
private final String name;
private final BigDecimal price;
}
See domain-events-design.md for patterns.
2. Publish Events from Aggregates
Add domain events to aggregate roots, publish via ApplicationEventPublisher:
@Service
@Transactional
public class ProductService {
public Product createProduct(CreateProductRequest request) {
Product product = Product.create(request.getName(), request.getPrice(), request.getStock());
repository.save(product);
product.getDomainEvents().forEach(eventPublisher::publishEvent);
product.clearDomainEvents();
return product;
}
}
See aggregate-root-patterns.md for DDD patterns.
3. Handle Events Transactionally
Use @TransactionalEventListener for reliable event handling:
@Component
public class ProductEventHandler {
@TransactionalEventListener(phase = TransactionPhase.AFTER_COMMIT)
public void onProductCreated(ProductCreatedEvent event) {
notificationService.sendProductCreatedNotification(event.getName());
}
}
Validate: Confirm the event handler fires only after the transaction commits by checking that the database state is committed before the handler executes.
See event-handling.md for handling patterns.
4. Configure Kafka Infrastructure
Configure KafkaTemplate for publishing, @KafkaListener for consuming:
spring:
kafka:
bootstrap-servers: localhost:9092
producer:
value-serializer: org.springframework.kafka.support.serializer.JsonSerializer
Validate: Send a test event via KafkaTemplate and confirm it appears in the consumer logs before proceeding to production patterns.
See dependency-setup.md and configuration.md.
5. Implement Outbox Pattern
Create OutboxEvent entity for atomic event storage:
@Entity
public class OutboxEvent {
private UUID id;
private String aggregateId;
private String eventType;
private String payload;
private LocalDateTime publishedAt;
}
Validate: Confirm the scheduled processor picks up pending events by checking the publishedAt timestamp is set after the scheduled run.
Scheduled processor publishes pending events. See outbox-pattern.md.
6. Handle Failure Scenarios
Implement retry logic, dead-letter queues, idempotent handlers:
@RetryableTopic(attempts = "3")
@KafkaListener(topics = "product-events")
public void handleProductEvent(ProductCreatedEventDto event) {
orderService.onProductCreated(event);
}
Validate: Confirm messages reach the dead-letter topic after exhausting retries before moving to observability.
7. Add Observability
Enable Spring Cloud Sleuth for distributed tracing, monitor metrics.
Best Practices
- Use past tense naming:
ProductCreated(notCreateProduct) - Keep events immutable: All fields should be final
- Include correlation IDs: For tracing events across services
- Use AFTER_COMMIT phase: Ensures events are published after successful database transaction
- Implement idempotent handlers: Handle duplicate events gracefully
- Add retry mechanisms: For failed event processing with exponential backoff
- Implement dead-letter queues: For events that fail processing after retries
- Log all failures: Include sufficient context for debugging
- Make handlers order-independent: Event ordering is not guaranteed in distributed systems
- Batch event processing: When handling high volumes
- Monitor event latencies: Set up alerts for slow processing
References
- dependency-setup.md — Maven/Gradle dependencies
- configuration.md — Kafka and Spring Cloud Stream configuration
- domain-events-design.md — Domain event design patterns
- aggregate-root-patterns.md — Aggregate root with event publishing
- event-publishing.md — Local and distributed event publishing
- event-handling.md — Event handling and consumption patterns
- outbox-pattern.md — Transactional outbox pattern for reliability
- testing-strategies.md — Unit and integration testing approaches
- examples.md — Complete working examples
- event-driven-patterns-reference.md — Detailed reference documentation
Constraints and Warnings
- Events published with
@TransactionalEventListeneronly fire after transaction commit - Avoid publishing large objects in events (memory pressure, serialization issues)
- Be cautious with async event handlers (separate threads, concurrency issues)
- Kafka consumers must handle duplicate messages (implement idempotent processing)
- Event ordering is not guaranteed in distributed systems (design handlers to be order-independent)
- Never perform blocking operations in event listeners on the main transaction thread
- Monitor for event processing backlogs (indicate system capacity issues)
Related Skills
spring-boot-security-jwt— JWT authentication for secure event publishingspring-boot-test-patterns— Testing event-driven applicationsaws-sdk-java-v2-lambda— Event-driven processing with AWS Lambdalangchain4j-tool-function-calling-patterns— AI-driven event processing
Related skills
More from giuseppe-trisciuoglio/developer-kit and the wider catalog.

spring-boot-openapi-documentation
Generate OpenAPI 3.0 documentation and Swagger UI for Spring Boot 3.x REST APIs with SpringDoc

spring-boot-project-creator
Creates and scaffolds a new Spring Boot project (3.x or 4.x) by downloading from Spring Initializr, generating package structure (DDD or Layered architecture), configuring JPA, SpringDoc OpenAPI, and Docker Compose services (PostgreSQL, Redis, MongoDB). Use when creating a new Java Spring Boot project from scratch, bootstrapping a microservice, or initializing a backend application.

spring-boot-resilience4j
Fault tolerance patterns for Spring Boot 3.x using Resilience4j—circuit breakers, retries, rate limiting, and more.

spring-boot-rest-api-standards
REST API design standards and best practices for Spring Boot projects

spring-boot-saga-pattern
Distributed transaction patterns for Spring Boot microservices using Saga Pattern with choreography or orchestration.

spring-boot-security-jwt
JWT authentication and authorization for Spring Boot 3.5.x with Spring Security 6.x and JJWT token management.