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
produces a Java bean property of type java.lang.Double. In fact these values are integers according to JSON schema and this fails a round-trip test using the generated Java types.
The generated type should use java.lang.Integer. Supporting values this large in the data you're binding requires the useLongIntegers config option to be set to force the type generation to use java.lang.Long instead of java.lang.Integer.
The text was updated successfully, but these errors were encountered:
JSON like this:
produces a Java bean property of type java.lang.Double. In fact these values are integers according to JSON schema and this fails a round-trip test using the generated Java types.
The generated type should use java.lang.Integer. Supporting values this large in the data you're binding requires the
useLongIntegers
config option to be set to force the type generation to use java.lang.Long instead of java.lang.Integer.The text was updated successfully, but these errors were encountered: