-
Notifications
You must be signed in to change notification settings - Fork 41.1k
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
Error response body does not match Content-Type #33716
Comments
Also noticed that any exception not inherited from ResponseStatusException, annotated with @ResponseStatus or handled with @ExceptionHandler explicitly returning in old (not problem detail) format. |
Regarding 401 not containing any body at all, this is expected because the error dispatch does not get to the Spring Boot error controller at all unless the error page is explicitly opened. This is related to the change in defaults in Spring Security 6 which applies the filter to all dispatch types. |
Hi, I have just started spring boot I don't have that much knowledge But what I have understand is that you want the response in application/problem+json but you are not getting in that format by default if the authorization fails then it will give response in text/html until you have configured your exception like this
this will give the proper response as you expected . And for the 401 by default, this will give the same type as text/html (both the error and HTML error page are together)so get a proper response like this @componentpublic class MyAuthenticationEntryPoint implements AuthenticationEntryPoint {
} let me know if i get it right or wrong . |
Here's a reproducer: sb-33716.zip Actually, this has nothing to do with problem details, it can also be reproduced with
And that's because |
After some digging, I don't think this is a bug in Spring Boot. This not only happens to the This controller @SpringBootApplication
@RestController
public class Application {
@GetMapping(value = "/")
public Map<String, Object> index() {
return Map.of("a", 1, "b", 2);
}
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
} responds to
(really to any
|
I think this issue is conflating several existing issues in Spring Framework and Spring Boot. First, the fact that a regular JSON serialization can use the When it comes to the broad mapping of the main JSON encoder with the Now the remaining part of this issue is about the fact that common exceptions thrown by Spring libraries are not all mapped by Spring Framework and additional support is required in Spring Boot. To get the full support for the problem details RFC in the Spring Boot error handling, we also need to render such responses as HTML views - this will be done in #19525. For that, we require content negotiation support for error rendering in Spring Framework and this is tracked by spring-projects/spring-framework#31936. In summary, we acknowledge that the problem still exists and we're tracking a detailed plan to support that in several existing issues. I'm closing this issue as a result. |
Describe the bug
In an application (using Spring Boot 3.0.1) the response body does not match the
Content-Type
header for a 403 Forbidden response if the request contains the headerAccept: application/problem+json, application/json
:Note: I'm using the shown mime type order because of spring-projects/spring-framework#29588
To Reproduce
@Secured("ROLE_ADMIN")
)Accept: application/problem+json, application/json
Expected behavior
Content-Type
response header must reflect the actual type of the contentSample
Request:
I already opened this issue as spring-projects/spring-security#12450 but learned that is related to Spring Boot, not Spring Security.
The text was updated successfully, but these errors were encountered: