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
On attemp to deserialize a stroke like {"object": {"object": "the value"}} we get an exception:
com.fasterxml.jackson.databind.JsonMappingException: Can not instantiate value of type [simple >type, class com.fasterxml.jackson.failing.TestUnwrappedIssueNUMBER$B] from String value ('the >value'); no single-String constructor/factory method
at [Source: {"object": {"object": "the value"}}; line: 1, column: 13](through reference chain: >com.fasterxml.jackson.failing.A["object"]->com.fasterxml.jackson.failing.Holder["object"])
at >com.fasterxml.jackson.databind.JsonMappingException.from(JsonMappingException.java:148)
at com.fasterxml.jackson.databind.DeserializationContext.mappingException(DeserializationContext.java:788)
at com.fasterxml.jackson.databind.deser.ValueInstantiator._createFromStringFallbacks(ValueInstantiator.java:277)
at com.fasterxml.jackson.databind.deser.std.StdValueInstantiator.createFromString(StdValueInstantiator.java:284)
at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromString(BeanDeserializerBase.java:1140)
at com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeOther(BeanDeserializer.java:135)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:126)
at com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserialize(SettableBeanProperty.java:529)
at com.fasterxml.jackson.databind.deser.impl.FieldProperty.deserializeAndSet(FieldProperty.java:106)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeWithUnwrapped(BeanDeserializer.java:511)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:274)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:124)
at com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserialize(SettableBeanProperty.java:529)
at com.fasterxml.jackson.databind.deser.impl.FieldProperty.deserializeAndSet(FieldProperty.java:106)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:242)
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:118)
at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:3335)
at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2375)
The text was updated successfully, but these errors were encountered:
Looks like removal from PropertyMap solves this, with no new failures. I hope this means there are no nasty side-effects; but there's probably non-zero chance that something may need patching in future (for example, with JSON Schema handling).
On attemp to deserialize a stroke like {"object": {"object": "the value"}} we get an exception:
The text was updated successfully, but these errors were encountered: