Skip to content
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

ControllerAdvice class extending ResponseEntityExceptionHandler renders invalid exception json #31511

Closed
Jenson3210 opened this issue Oct 26, 2023 · 4 comments
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: duplicate A duplicate of another issue

Comments

@Jenson3210
Copy link

Jenson3210 commented Oct 26, 2023

Description

Affects: Spring framework 6

Expected behaviour:

A project that has a @ControllerAdvice annotated class that extends ResponseEntityExceptionHandler renders correct json of the exception it handles.

Actual behaviour:
When an exception occurs during serialization (jackson) of a field in ((open) projection) interfaces, there is an invalid json being created. First the object get serialized up till where the exception occured, that object is closed and then the object of the rfc7807 is serialized afterwards.


Reproduce

This bug is easily reproducible with a very limited sample codebase: https://github.com/Jenson3210/bug-demo

  • Run this codebase
  • Call endpoint localhost:8080/interface and see returns 2 objects iso 1 error object {"type":"interface","interfaceField":"field"} and {"type":"about:blank","title":"Internal Server Error","status":500,"detail":"Failed to write request","instance":"/interface"}
    This first object contains a type annotation derived from Jackson type annotation and a field which was succefully "calculated"
  • Call endpoint localhost:8080/projection and see it returns 2 objects instead of 1 error object {} and {"type":"about:blank","title":"Internal Server Error","status":500,"detail":"Failed to write request","instance":"/projection"}
  • Remove extends ResponseEntityExceptionHandler from ControllerExceptionHandler class. (or simply switch the commented lines)
  • See the endpoints now return proper json.

Possible solutions

The proxy for projections could be caching and checking on instantiation if all fields are retrievable. If resource-expensive operations need to be calculated, by caching they do not need to be recalculated by Jackson again. This is of course only a solution for the projections.

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged or decided on label Oct 26, 2023
@bclozel
Copy link
Member

bclozel commented Oct 27, 2023

I think this is a duplicate of #31104 (that we later refined in #31154). What's happening here is that the error happens after we've started writing to the response and the exception handling adds more content to the response, making the entire thing somewhat invalid.

We are now attempting to reset the response body if possible, before error handling writes to the response.

Can you test your application with Spring Boot 3.2.0-RC1 and let us know if the behavior is improved? Your sample application is 404 to me so I can't test it myself. Thanks!

@bclozel bclozel added status: waiting-for-feedback We need additional information before we can continue in: web Issues in web modules (web, webmvc, webflux, websocket) labels Oct 27, 2023
@Jenson3210
Copy link
Author

@bclozel I made the demo repo public (sorry for that)
I will try the RC1 and let you know.
Seems like resetting should fix this indeed.
I will get feedback on the RC

@spring-projects-issues spring-projects-issues added status: feedback-provided Feedback has been provided and removed status: waiting-for-feedback We need additional information before we can continue labels Oct 27, 2023
@bclozel bclozel added status: waiting-for-feedback We need additional information before we can continue and removed status: feedback-provided Feedback has been provided labels Oct 27, 2023
@Jenson3210
Copy link
Author

@bclozel RC-1 fixes this indeed! great to know it is coming. Can be closed! Did not find this issue as I searched for wrong params. Sorry for doubles!

@spring-projects-issues spring-projects-issues added status: feedback-provided Feedback has been provided and removed status: waiting-for-feedback We need additional information before we can continue labels Oct 27, 2023
@bclozel
Copy link
Member

bclozel commented Oct 27, 2023

Great news, and thanks for testing our release candidate!
We can't really backport this change in 6.0.x, so applications will need to upgrade to Spring Boot 3.2 / Spring Framework 6.1 to get this behavior.

@bclozel bclozel closed this as not planned Won't fix, can't repro, duplicate, stale Oct 27, 2023
@bclozel bclozel added status: duplicate A duplicate of another issue and removed status: waiting-for-triage An issue we've not yet triaged or decided on status: feedback-provided Feedback has been provided labels Oct 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: duplicate A duplicate of another issue
Projects
None yet
Development

No branches or pull requests

3 participants