skills/modelscope.cn/springboot-patterns

springboot-patterns

SKILL.md

Spring Boot 開発パターン

スケーラブルで本番グレードのサービスのためのSpring BootアーキテクチャとAPIパターン。

REST API構造

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

  MarketController(MarketService marketService) {
    this.marketService = marketService;
  }
Installs
1
First Seen
May 27, 2026
springboot-patterns from modelscope.cn