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 the function "" public Object deserialize(JsonParser p, DeserializationContext ctxt) ""
Object bean is generated unordered (properties of the class Candlestick),
but the ""SettableBeanProperty[] props"" is generated ordered alfabetically,
so,, when trying the function "" prop.deserializeAndSet(p, ctxt, bean);"" properties and values are mismaching and function try to set string value to Long and Long value to string...
I try to change @JsonPropertyOrder(alphabetic=true) of Candelstick class, but nothing changed...
Anybody has any idea????
The text was updated successfully, but these errors were encountered:
com.fasterxml.jackson.databind.deser.impl;
in the function "" public Object deserialize(JsonParser p, DeserializationContext ctxt) ""
Object bean is generated unordered (properties of the class Candlestick),
but the ""SettableBeanProperty[] props"" is generated ordered alfabetically,
so,, when trying the function "" prop.deserializeAndSet(p, ctxt, bean);"" properties and values are mismaching and function try to set string value to Long and Long value to string...
I try to change @JsonPropertyOrder(alphabetic=true) of Candelstick class, but nothing changed...
Anybody has any idea????
The text was updated successfully, but these errors were encountered: