spring-web
Installation
SKILL.md
Spring Web
Conventions for building REST APIs with Spring Web MVC in Spring Boot 3.2+.
Do NOT Load for reactive web applications (WebFlux) or GraphQL APIs — use the dedicated skill.
Controller Design
@RestController
@RequestMapping("/api/orders")
@RequiredArgsConstructor
class OrderController {
private final OrderService orderService;