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;
Installs
25
GitHub Stars
37
First Seen
Mar 6, 2026
spring-events — claude-dev-suite/claude-dev-suite