您好,登錄后才能下訂單哦!
我們在使用?MessagePack 對 List 對象數(shù)據(jù)進行序列化的時候,發(fā)現(xiàn)序列化以后的二進制數(shù)組數(shù)據(jù)偏大的情況。
請注意,不是所有的 List 對象都會出現(xiàn)這種情況,這個根據(jù)你 List 對象中存儲的內(nèi)容有關。
有關本問題的測試源代碼請參考:https://github.com/cwiki-us-demo/serialize-deserialize-demo-java/blob/master/src/test/java/com/insight/demo/serialize/MessagePackDataTest.java?中的內(nèi)容。
考察下面的代碼:
List<MessageData>?dataList?=?MockDataUtils.getMessageDataList(600000); ? ObjectMapper?objectMapper?=?new?ObjectMapper(new?MessagePackFactory()); raw?=?objectMapper.writeValueAsBytes(dataList); ? FileUtils.byteCountToDisplaySize(raw.length); logger.debug("Raw?Size:?[{}]",?FileUtils.byteCountToDisplaySize(raw.length));
我們會發(fā)現(xiàn),針對這個 60 萬個對象的 List 的序列化后的數(shù)據(jù)達到了 33MB。
如果我們再定義??ObjectMapper 對象的時候添加一部分參數(shù),我們會發(fā)現(xiàn)大小將會有顯著改善。
請參考下面的代碼:
List<MessageData>?dataList?=?MockDataUtils.getMessageDataList(600000); ? ObjectMapper?objectMapper?=?new?ObjectMapper(new?MessagePackFactory()); objectMapper.configure(JsonParser.Feature.ALLOW_SINGLE_QUOTES,?true); objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES,?false); objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); objectMapper.setAnnotationIntrospector(new?JsonArrayFormat()); ? rawJsonArray?=?objectMapper.writeValueAsBytes(dataList); logger.debug("rawJsonArray?Size:?[{}]",?FileUtils.byteCountToDisplaySize(rawJsonArray.length));
如果你運行上面的代碼,你會看到程序的輸出字符串將會降低到 23MB。
這里面主要是?objectMapper.setAnnotationIntrospector(new JsonArrayFormat());
?這句話起了作用。
在正常的場景中,我們可以通過 注解 JsonIgnore, 將其加到屬性上,即解析時即會過濾到屬性。
而實際實現(xiàn),則是由類?JacksonAnnotationIntrospector
?中 的?hasIgnoreMarker
?來完成,則就是通過讀取注解來判斷屬性是否應該被exclude掉。ObjectMapper
中默認的?AnnotationIntrospector
?即是?JacksonAnnotationIntrospector
?來完成,但我們可以通過 方法?ObjectMapper.setAnnotationIntrospector
?來重新指定自定義的實現(xiàn)。
?
https://www.cwiki.us/display/Serialization/MessagePack+Jackson+Data+Size
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。