返回 Skill 列表
extension
分类: 开发与工程无需 API Key

spring-boot-modulith

Spring Modulith 2.0实现,用于Spring Boot 4中的限界上下文。当构建应用程序模块、实现事件驱动通信的@ApplicationModuleListener、使用Scenario API进行测试、强制模块边界或外部化事件到Kafka/AMQP时,请使用此功能。对于模块化单体架构决策,请参阅领域驱动设计技能。

person作者: jakexiaohubgithub

Spring Modulith for Bounded Contexts

Implements DDD bounded contexts as application modules with enforced boundaries and event-driven communication.

Core Concepts

| Concept | Description | |---------|-------------| | Application Module | Package-based boundary = bounded context | | Module API | Types in base package (public) | | Internal | Types in sub-packages (encapsulated) | | Events | Cross-module communication mechanism |

Module Structure

src/main/java/
├── com.example/
│   └── Application.java              ← @SpringBootApplication
├── com.example.order/                ← Module: order
│   ├── OrderService.java             ← Public API
│   ├── OrderCreated.java             ← Public event
│   ├── package-info.java             ← @ApplicationModule config
│   └── internal/                     ← Encapsulated
│       ├── OrderRepository.java
│       └── OrderEntity.java
├── com.example.inventory/            ← Module: inventory
│   ├── InventoryService.java
│   └── internal/
└── com.example.shipping/             ← Module: shipping

Types in com.example.order = public API Types in com.example.order.internal = hidden from other modules

Quick Patterns

See EXAMPLES.md for complete working examples including:

  • Module Configuration with @ApplicationModule
  • Event Publishing with domain event records
  • Event Handling with @ApplicationModuleListener (Java + Kotlin)
  • Module Verification Test with PlantUML generation
  • Event Externalization for Kafka/AMQP

Spring Boot 4 / Modulith 2.0 Specifics

  • @ApplicationModuleListener combines @Async + @Transactional(REQUIRES_NEW) + @TransactionalEventListener(AFTER_COMMIT)
  • Event Externalization with @Externalized annotation for Kafka/AMQP
  • JDBC event log ensures at-least-once delivery

Detailed References

Anti-Pattern Checklist

| Anti-Pattern | Fix | |--------------|-----| | Direct bean injection across modules | Use events or expose API | | Synchronous cross-module calls | Use @ApplicationModuleListener | | Module dependencies not declared | Add allowedDependencies in @ApplicationModule | | Missing verification test | Add ApplicationModules.verify() test | | Internal types in public API | Move to .internal sub-package | | Events without data | Include all data handlers need |

Critical Reminders

  1. One module = one bounded context — Mirror DDD boundaries
  2. Events are the integration mechanism — Not direct method calls
  3. Verify in CIApplicationModules.verify() catches boundary violations
  4. Reference by ID — Never direct object references across modules
  5. Transaction per module@ApplicationModuleListener ensures isolation