-
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
spring.jackson.serialization.indent-output doesn't work with Spring Boot 2.3.0.M2 when using Actuator #20211
Comments
Thanks for the sample, Johnny. It works as expected with M2 if you remove the Actuator dependency. My guess is that the Actuator-specific |
Using curl to access http://localhost:8080/persons, if (mediaType == null || MediaType.ALL.equalsTypeAndSubtype(mediaType)) {
return true;
} |
Another side-effect is that we serve a
|
We need something in the M3 release notes to indicate that the regression's been fixed. I think we should use this issue to do that. |
Fixed by ab72cc8 which reverted the first attempt at providing an Actuator-specific |
spring.jackson.serialization.indent-output
doesn't work with Spring Boot 2.3.0.M2. I confirmed that it works with Spring Boot 2.3.0.M1.This is a sample project to reproduce it: https://github.com/izeye/spring-boot-throwaway-branches/tree/spring-boot-2.3.0.M2-jackson-indent-output
And this is a sample endpoint to check: http://localhost:8080/persons
The text was updated successfully, but these errors were encountered: