Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
180 views
in Technique[技术] by (71.8m points)

java - Wrong conversion of string field in jackson

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...