You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When there is a custom objectmapper in the application, the SBA serialization error will be reported, if the SBA uses special serialization rules, why not build its own objectmapper inside the SBA. Good components should be compatible and fault-tolerant, but SBA has so far been too difficult to use in complex projects
The text was updated successfully, but these errors were encountered:
@niuhutao as @SteKoe wrote, Spring Boot 3 provides a separate ObjectMapper for actuator endpoints. This makes sure that you do not change the actuator output by accident.
I guess you have completely overridden the mechanism in your MappingJackson2HttpMessageConverter. This one extends AbstractJackson2HttpMessageConverter and there is a Map with objectMapperRegistrations, probably you should have placed your own ObjectMapper in this Map instead of overriding everything.
spring boot 3.3.4
SBA 3.3.6
When there is a custom objectmapper in the application, the SBA serialization error will be reported, if the SBA uses special serialization rules, why not build its own objectmapper inside the SBA. Good components should be compatible and fault-tolerant, but SBA has so far been too difficult to use in complex projects
The text was updated successfully, but these errors were encountered: