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
I'm facing an issue when using BigDecimal fields and trying to serialize them using Jackson2HashMapper with flatten = true, where my BigDecimal fields are simply being discarded.
It seems like the exact same issue as the one below, but for a different type (original one was for Date/Calendar):
It seems like a fix was put in place for dealing with java.util.Date as the fix for 1572:
if (cur.asText().equals("java.util.Date")) {
resultMap.put(propertyPrefix, nodes.next().asText());
break;
}
I'm trying to use deserialization options and custom deserializers to overcome the issue, but with no success. Do we have any options, or another fix is needed for this to work?