Open FalconIA opened 6 years ago
8093873769532439696
is too large for the double type.
If you run this in Java you will see a similar result:
double d=Double.parseDouble("8093873769532439696");
It's the long type, not the double type. I do not think that JSON should be limited to double type as javascript.
Actually, Jackson2
can recognize this value correctly.
Got wrong number when serialize a long number.
Here is a example:
Got