I've recently updated a project at work to Spring-boot 2.5.2 & one of the tests started failing. As it turns out, the root cause lies in the deserialisation of XML data.
We use the root unwrapping feature & have the data model class annotated with @JsonRootName.
I've created a very simple project to give you an example of our usage here.
Old, working version: 2.11.4
New, non-working version: 2.12.3
Any advice is much appreciated.
Thanks!