springboot-patterns

Installation
SKILL.md

Spring Boot Development Patterns

Spring Boot architecture and API patterns for scalable, production-grade services.

REST API Structure

@RestController
@RequestMapping("/api/markets")
@Validated
class MarketController {
  private final MarketService marketService;

  MarketController(MarketService marketService) {
    this.marketService = marketService;
  }
Installs
5
GitHub Stars
3
First Seen
Feb 27, 2026
springboot-patterns — oldwinter/skills