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;
Installs
4
First Seen
Apr 7, 2026
spring-web — rynr/spring-skills