Skip to content

Replace RFC 7807 with RFC 9457 in documentation #33594

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ use a protected method to map any exception to a `ProblemDetail`.

You can register `ErrorResponse` interceptors through the
xref:web/webflux/config.adoc[WebFlux Config] with a `WebFluxConfigurer`. Use that to intercept
any RFC 7807 response and take some action.
any RFC 9457 response and take some action.



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ use a protected method to map any exception to a `ProblemDetail`.

You can register `ErrorResponse` interceptors through the
xref:web/webmvc/mvc-config.adoc[MVC Config] with a `WebMvcConfigurer`. Use that to intercept
any RFC 7807 response and take some action.
any RFC 9457 response and take some action.



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
@JacksonXmlRootElement(localName = "problem", namespace = ProblemDetailJacksonXmlMixin.RFC_7807_NAMESPACE)
public interface ProblemDetailJacksonXmlMixin {

/** RFC 7807 namespace. */
/** RFC 7807 (obsoleted by RFC 9457) namespace. */
String RFC_7807_NAMESPACE = "urn:ietf:rfc:7807";


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ default void configureArgumentResolvers(ArgumentResolverConfigurer configurer) {

/**
* Add to the list of {@link ErrorResponse.Interceptor}'s to invoke when
* rendering an RFC 7807 {@link org.springframework.http.ProblemDetail}
* rendering an RFC 9457 {@link org.springframework.http.ProblemDetail}
* error response.
* @param interceptors the handlers to use
* @since 6.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ default void extendHandlerExceptionResolvers(List<HandlerExceptionResolver> reso

/**
* Add to the list of {@link ErrorResponse.Interceptor}'s to apply when
* rendering an RFC 7807 {@link org.springframework.http.ProblemDetail}
* rendering an RFC 9457 {@link org.springframework.http.ProblemDetail}
* error response.
* @param interceptors the interceptors to use
* @since 6.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public void setResponseBodyAdvice(@Nullable List<ResponseBodyAdvice<?>> response

/**
* Configure a list of {@link ErrorResponse.Interceptor}'s to apply when
* rendering an RFC 7807 {@link org.springframework.http.ProblemDetail}
* rendering an RFC 9457 {@link org.springframework.http.ProblemDetail}
* error response.
* @param interceptors the handlers to use
* @since 6.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ public WebBindingInitializer getWebBindingInitializer() {

/**
* Configure a list of {@link ErrorResponse.Interceptor}'s to apply when
* rendering an RFC 7807 {@link org.springframework.http.ProblemDetail}
* rendering an RFC 9457 {@link org.springframework.http.ProblemDetail}
* error response.
* @param interceptors the interceptors to use
* @since 6.2
Expand Down