Skip to content
Development
Skill

/problem-details-rfc9457

Use when implementing exception mapping or RFC 9457 error responses in Spring Boot 3. Preserve an existing legacy error contract unless migration is requested.

From plugin
spring-boot-skills
26533 skills
Install
$ npx -y skills add rrezartprebreza/spring-boot-skills --skill problem-details-rfc9457 --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/problem-details-rfc9457

Context preview

The summary Claude sees to decide when to auto-load this skill.

Use when implementing exception mapping or RFC 9457 error responses in Spring Boot 3. Preserve an existing legacy error contract unless migration is requested.

SKILL.md

problem-details-rfc9457.SKILL.md
name: problem-details-rfc9457
description: >
  Use when implementing exception mapping or RFC 9457 error responses in Spring Boot 3.
  Preserve an existing legacy error contract unless migration is requested.

Problem Details - RFC 9457

Choose the error contract

Inspect existing advice, security entry points and API tests first. Keep one error policy per API. Success DTOs or success envelopes can coexist with Problem Details errors: RFC 9457 specifies errors, not success representations.

For an API using Problem Details, enable Spring's built-in MVC exception handling:

spring:
  mvc:
    problemdetails:
      enabled: true

For WebFlux use `spring.webflux.problemdetails.enabled` and reactive exception handling; the servlet templates below are not WebFlux handlers.

Domain errors

Use the compiled [DomainException](templates/DomainException.java) together with [ProblemDetailExceptionHandler](templates/ProblemDetailExceptionHandler.java). The handler maps all subclasses using their declared status and stable error code:

  • [OrderNotFoundException](templates/OrderNotFoundException.java): 404.
  • [InsufficientInventoryException](templates/InsufficientInventoryException.java): 422.
  • [BusinessRuleViolationException](templates/BusinessRuleViolationException.java): 422.

Each public class has its own file. These are API-facing exceptions with HTTP status metadata; for a framework-free domain, keep domain exceptions independent and map them in the web adapter. Do not expose arbitrary persistence or infrastructure exception messages.

The advice extends `ResponseEntityExceptionHandler` to preserve Spring's handling of framework exceptions. Validation returns 400 with field violations; unexpected failures return a generic 500 while retaining the full exception only in server logs. Keep nullable validation messages safe. Filter-level authentication failures need an `AuthenticationEntryPoint`; authorization failures need an `AccessDeniedHandler`. Controller advice does not cover the security filter chain.

Response fields

{
  "type": "https://api.example.com/errors/order_not_found",
  "title": "Not Found",
  "status": 404,
  "detail": "Order not found",
  "instance": "/api/orders/123",
  "errorCode": "ORDER_NOT_FOUND"
}

Use project-owned, stable URIs for custom problem types. An explicit `type` is optional; when omitted it defaults to `about:blank`. Its title should then match the HTTP status phrase. The HTTP status and the body status must agree. Use `application/problem+json` for JSON problems. Use extensions such as `errorCode` or `violations` for machine-readable details instead of requiring clients to parse human-readable messages.

Verification

Test actual HTTP responses for domain 404/422, validation 400, unexpected 500, and framework errors such as malformed JSON and unsupported methods. Assert content type, status, stable error codes and absence of stack traces or internal messages. Separately test filter 401/403. The repository verification fixture imports these exact templates for both Boot versions.

Official sources

  • [RFC 9457](https://www.rfc-editor.org/rfc/rfc9457.html)
  • [Spring MVC error responses](https://docs.spring.io/spring-framework/reference/web/webmvc/mvc-ann-rest-exceptions.html)

Gotchas

  • Agent handles a different exception class than the domain throws - test the concrete exceptions.
  • Agent forces Problem Details into an existing legacy API - preserve its contract unless asked to migrate.
  • Agent requires an explicit type for every error - about:blank is the default.
  • Agent treats success envelopes and Problem Details as incompatible - only error policy must be consistent.
  • Agent relies on advice for filter exceptions - configure the security handlers separately.
  • Agent returns internal exception messages in 500 responses - log privately and return generic detail.
Read more
Ships withspring-boot-skills

Production-grade Claude Code and Codex skills for Spring Boot developers

Get the whole plugin

Other skills on spring-boot-skills.