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
There seems to be an issue surrounding the _filterId when serializing a Map. The Implementation we are setting a default filter by overriding, the JacksonAnnotationIntrospector findFilterId. A default filterId is set if one is not found. That Id may or may not be found, so we set the SimpleFilterProvider().setFailOnUnknownId to false. However in the Implementation of the MapSerializer there is an issue within the serialize method specifically
Utilizing jackson-databind-2.7.5.
There seems to be an issue surrounding the _filterId when serializing a Map. The Implementation we are setting a default filter by overriding, the JacksonAnnotationIntrospector findFilterId. A default filterId is set if one is not found. That Id may or may not be found, so we set the SimpleFilterProvider().setFailOnUnknownId to false. However in the Implementation of the MapSerializer there is an issue within the serialize method specifically
Since the above code block assumes that the filter will be found, null gets passed into serializeFilteredFields resulting in an NPE.
The above I believe could be written:
The text was updated successfully, but these errors were encountered: