I’m encountering the following issue: Could not find a FormatMapper for the JSON format, which is required for mapping JSON types. JSON FormatMapper configuration is automatic, but requires that you have either Jackson or a JSONB implementation like Yasson on the class path
In Jackson 3.x, the package com.fasterxml.jackson was renamed to tools.jackson. This change seems to break the auto-configuration of the FormatMapper for JSON fields
I tried manually defining a FormatMapper bean, but that fails because JsonProcessingException (and other core Jackson types) are no longer in the expected location, causing classpath or compatibility issues.
I know I could downgrade to Jackson 2.x as a workaround, but I’d prefer to keep using Jackson 3.x if possible. Is there a way to make this work with the current stack?