i got problems when i try to parse json with ObjectMapper and in the json there is an number that look like mate
json
{ "_id" : 290365351583, "my_number" : 1.5638694276102368E8 }
my code
ObjectMapper objectMapper= new ObjectMapper();
DBobject obj = ;\\the json when i select it from mongo db
String data = JSONSerializers.getStrict().serialize(obj);
JsonNode = objectMapper.readTree(data);
when i run this code i got ERROR "Non-standart token 'Infinity': enable JsonParser.Feature.ALLOW_NON_NUMERIC_NUMBERS to allow"
my_numbervalue.