I have JSON file with field: "id": "tunnels.fid-4d85fda9_1773f0fa076_-6dc1"
When i use ObjectMapper in Jackson library this field is wrong converted to
"id": "tunnels.fid-4d85fda9_1773f0fa076_-70a9"
- here strange -70a9 after ObjectMappers deserialization
I don't know why the last characters in previous String has been changed to random characters while deserialization to POJO with field String id
This is my OM settings
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
objectMapper.configure(MapperFeature.ALLOW_COERCION_OF_SCALARS, false);
objectMapper.configure(MapperFeature.DEFAULT_VIEW_INCLUSION, false);
objectMapper.registerModule(new JtsModule());
Does anybody know how to fix it??
Thanks!
question from:
https://stackoverflow.com/questions/65909009/wrong-conversion-of-string-field-in-jackson 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…