Comprehensive REST API design standards and best practices for Spring Boot applications.
Works with
Covers resource-based URL design, HTTP method conventions, status codes, DTOs, validation, and error handling with global exception strategies
Includes pagination, filtering, sorting, security headers, CORS policies, and HATEOAS implementation patterns
Provides constructor injection, immutable DTO patterns, transaction management, and logging best practices with code examples
Enforces API vers
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionspring-boot-rest-api-standardsExecute the skills CLI command in your project's root directory to begin installation:
Fetches spring-boot-rest-api-standards from giuseppe-trisciuoglio/developer-kit and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate spring-boot-rest-api-standards. Access via /spring-boot-rest-api-standards in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
194
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
194
stars
REST API design standards for Spring Boot covering URL design, HTTP methods, status codes, DTOs, validation, error handling, pagination, and security headers.
Follow these steps to create well-designed REST API endpoints:
Design Resource-Based URLs
Implement Proper HTTP Methods
Use Appropriate Status Codes
Create Request/Response DTOs
@Data/@ValueImplement Validation
@Valid annotation on @RequestBody parameters@NotBlank, @Email, @Size, etc.)MethodArgumentNotValidExceptionSet Up Error Handling
@RestControllerAdvice for global exception handlingResponseStatusException for specific HTTP status codesConfigure Pagination
Add Security Headers
Validation checkpoints:
@RestController
@RequestMapping("/v1/users")
@RequiredArgsConstructor
@Slf4j
public class UserController {
private final UserService userService;
@GetMapping
public ResponseEntity<Page<UserResponse>> getAllUsers(
@RequestParam(defaultValue = "0") int page,
@RequestParam(defaultValue = "10") int pageSize) {
log.debug("Fetching users page {} size {}", page, pageSize);
Page<UserResponse> users = userService.getAll(page, pageSize);
return ResponseEntity.ok(users);
}
@GetMapping("/{id}")
public ResponseEntity<UserResponse> getUserById(@PathVariable Long id) {
return ResponseEntity.ok(userService.getById(id));
}
@PostMapping
public ResponseEntity<UserResponse> createUser(@Valid @RequestBody CreateUserRequest request) {
UserResponse created = userService.create(request);
return ResponseEntity.status(HttpStatus.CREATED).body(created);
}
@PutMapping("/{id}")
public ResponseEntity<UserResponse> updateUser(
@PathVariable Long id,
@Valid @RequestBody UpdateUserRequest request) {
return ResponseEntity.ok(userService.update(id, request));
}
@DeleteMapping("/{id}")
public ResponseEntity<Void> deleteUser(@PathVariable Long id) {
userService.delete(id);
return ResponseEntity.noContent().build();
}
}
// Request DTO
@Data
@NoArgsConstructor
@AllArgsConstructor
public class CreateUserRequest {
@NotBlank(message = "User name cannot be blank")
private String name;
@Email(message = "Valid email required")
private String email;
}
// Response DTO
@Data
@NoArgsConstructor
@AllArgsConstructor
public class UserResponse {
private Long id;
private String name;
private String email;
private LocalDateTime createdAt;
}
@RestControllerAdvice
@Slf4j
public class GlobalExceptionHandler {
@ExceptionHandler(MethodArgumentNotValidException.class)
public ResponseEntity<ErrorResponse> handleValidationException(
MethodArgumentNotValidException ex, WebRequest request) {
String errors = ex.getBindingResult().getFieldErrors().stream()
.map(f -> f.getField() + ": " + f.getDefaultMessage())
.collect(Collectors.joining(", "));
ErrorResponse errorResponse = new ErrorResponse(
HttpStatus.BAD_REQUEST.value(),
"Validation Error",
"Validation failed: " + errors,
request.getDescription(false).replaceFirst("uri=", "")
);
return new ResponseEntity<>(errorResponse, HttpStatus.BAD_REQUEST);
}
@ExceptionHandler(ResponseStatusException.class)
public ResponseEntity<ErrorResponse> handleResponseStatusException(
ResponseStatusException ex, WebRequest request) {
ErrorResponse error Implementation Guide
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Steps
- 1Install skill using provided installation command
- 2Test with simple use case relevant to your work
- 3Evaluate output quality and relevance
- 4Iterate on prompts to improve results
- 5Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Related Skills
tailwind-css-patterns
20giuseppe-trisciuoglio/developer-kit
Frontendsame repojava-coding-standards
17affaan-m/everything-claude-code
Backendtag: standardstypescript-best-practices
146jwynia/agent-skills
Backendsame categoryfastapi-python
61mindrally/skills
Backendsame categoryjava-springboot
50github/awesome-copilot
Backendsame categorygoogle-search-console
49kostja94/marketing-skills
Backendsame categoryReviews
4.8★★★★★35 reviews- SShikha Mishra★★★★★Dec 16, 2024
Keeps context tight: spring-boot-rest-api-standards is the kind of skill you can hand to a new teammate without a long onboarding doc.
- SSofia Gill★★★★★Dec 12, 2024
spring-boot-rest-api-standards is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- NNaina Park★★★★★Nov 19, 2024
I recommend spring-boot-rest-api-standards for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- SSakshi Patil★★★★★Nov 15, 2024
I recommend spring-boot-rest-api-standards for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- RRahul Santra★★★★★Nov 7, 2024
spring-boot-rest-api-standards has been reliable in day-to-day use. Documentation quality is above average for community skills.
- CCarlos Yang★★★★★Nov 3, 2024
Solid pick for teams standardizing on skills: spring-boot-rest-api-standards is focused, and the summary matches what you get after install.
- PPratham Ware★★★★★Oct 26, 2024
Solid pick for teams standardizing on skills: spring-boot-rest-api-standards is focused, and the summary matches what you get after install.
- NNaina Haddad★★★★★Oct 22, 2024
spring-boot-rest-api-standards has been reliable in day-to-day use. Documentation quality is above average for community skills.
- CCarlos Chen★★★★★Oct 10, 2024
Useful defaults in spring-boot-rest-api-standards — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- CChaitanya Patil★★★★★Oct 6, 2024
Useful defaults in spring-boot-rest-api-standards — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 35
1 / 4Discussion
Comments — not star reviews- No comments yet — start the thread.