2021
09-28
09-28
ObjectMapper 如何忽略字段大小写
ObjectMapper忽略字段大小写核心代码:ObjectMappermapper=newObjectMapper();mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,false);mapper.configure(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES,true);例子:importcom.fasterxml.jackson.databind.DeserializationFeature;importcom.fasterxml.jackson.databind.JsonMappingException;importcom.fasterxml.jackson.databind.MapperFeat...
继续阅读 >