您好,登錄后才能下訂單哦!
這篇文章主要講解了“Jackson反序列化時怎么實現大小寫不敏感設置”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Jackson反序列化時怎么實現大小寫不敏感設置”吧!
ObjectMapper objectMapper = new ObjectMapper(); objectMapper.configure(Feature.IGNORE_UNKNOWN,true); objectMapper.configure(Feature.WRITE_BIGDECIMAL_AS_PLAIN,true); objectMapper.configure(JsonParser.Feature.ALLOW_MISSING_VALUES,true); objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,false); objectMapper.configure(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES,false);//大小寫脫敏 默認為false 需要改為tru
參考
com.fasterxml.jackson.databind.MapperFeature#ACCEPT_CASE_INSENSITIVE_PROPERTIES
public static void main(String[] args) throws IOException { String x = "{\n" + " \"TToUserName\":\"gh_a5624dd2db4e\",\n" + " \"FFromUserName\":\"ochvq0Kn35VlnTAcIJ3fRBAZTQUY\"" + " }"; ObjectMapper objectMapper = new ObjectMapper(); Result map = objectMapper.readValue(x, Result.class); System.out.println(map); objectMapper.writeValue(System.out,map); } private static class Result { private String ToUserName; private String FromUserName; @JsonProperty("ToUserName") public String getToUserName() { return ToUserName; } @JsonProperty("TToUserName") public void setToUserName(String toUserName) { ToUserName = toUserName; } @JsonProperty("FromUserName") public String getFromUserName() { return FromUserName; } @JsonProperty("FFromUserName") public void setFromUserName(String fromUserName) { FromUserName = fromUserName; } }
Jackson轉換json時會把大寫轉換成小寫
1、在變量時加上: @JsonProperty
2、在set/get方法加上:@JsonIgnore
感謝各位的閱讀,以上就是“Jackson反序列化時怎么實現大小寫不敏感設置”的內容了,經過本文的學習后,相信大家對Jackson反序列化時怎么實現大小寫不敏感設置這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。