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
In version 2.10.0.pr1 the following code is deprecated:
ObjectMapper om = new ObjectMapper();
om.configure(MapperFeature.PROPAGATE_TRANSIENT_MARKER, true);
The documentation suggests using the following:
ObjectMapper.builder().disable(...)
but the builder function is not present. Not sure if this is related to #1954 or documentation drift. Any information or workaround about how to enable a MapperFeature in 2.10.0.pr1 would be appreciated.
The text was updated successfully, but these errors were encountered:
Quick note: in addition to 3.0 vs 2.10 (which is true for many things -- builder() pattern actually was backported in 2.10), documentation should point to
JsonMapper.builder()
since although at some point the idea of adding builder onObjectMapper was considered it was difficult if not impossible to make it work properly with format-specific subtypes.
In version 2.10.0.pr1 the following code is deprecated:
The documentation suggests using the following:
but the builder function is not present. Not sure if this is related to #1954 or documentation drift. Any information or workaround about how to enable a MapperFeature in 2.10.0.pr1 would be appreciated.
The text was updated successfully, but these errors were encountered: