spring-events
Installation
SKILL.md
Spring Application Events
Quick Start
// Custom Event (POJO - preferred)
public record OrderCreatedEvent(
Long orderId,
Long customerId,
BigDecimal totalAmount,
Instant createdAt
) {}
// Publisher
@Service
@RequiredArgsConstructor
public class OrderService {
private final ApplicationEventPublisher eventPublisher;