JsonMsgPack
maven
1 2 3 4 5 6 7 8 9 10 11
| <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.6</version> </dependency>
<dependency> <groupId>org.msgpack</groupId> <artifactId>jackson-dataformat-msgpack</artifactId> <version>0.9.0</version> </dependency>
|
JacksonUtil
.setSerializationInclusion(JsonInclude.Include.NON_NULL);空值不参与序列化。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
| public class JsonKit { private static final ObjectMapper MsagePakMapper = new ObjectMapper(new MessagePackFactory()); private static final ObjectMapper JsonMapper = new ObjectMapper(new JsonFactory());
public static <T> String jsonBeanToStr(Object obj) { try { return JsonMapper.writeValueAsString(obj); } catch (IOException e) { throw new RuntimeException(e); } }
public static <T> String msgpackBeanToStr(Object obj) { try { return MsagePakMapper.writeValueAsString(obj); } catch (IOException e) { throw new RuntimeException(e); } }
public static <T> byte[] jsonBeanToByteArr(Object obj) { try { return JsonMapper.writeValueAsBytes(obj); } catch (IOException e) { throw new RuntimeException(e); } }
public static <T> byte[] msgpackBeanToByteArr(Object obj) { try { return MsagePakMapper.writeValueAsBytes(obj); } catch (IOException e) { throw new RuntimeException(e); } }
public static <T> T jsonStrToBean(String jsonStr, Class<T> valueType) { try { JsonMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); return JsonMapper.readerFor(valueType).readValue(jsonStr); } catch (IOException e) { throw new RuntimeException(e); } }
public static <T> T msgpackStrToBean(String jsonStr, Class<T> valueType) { try { return MsagePakMapper.readerFor(valueType).readValue(jsonStr); } catch (IOException e) { throw new RuntimeException(e); } }
public static <T> T jsonFileToBean(String path, Class<T> valueType) { try { JsonMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); return JsonMapper.readValue(new File(path), valueType); } catch (IOException e) { throw new RuntimeException(e); } }
public static <T> T msgpackFileToBean(String path, Class<T> valueType) { try { MsagePakMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); return MsagePakMapper.readValue(new File(path), valueType); } catch (IOException e) { throw new RuntimeException(e); } }
public static <T> T jsonStrToBean(String jsonStr) { try { return JsonMapper.readerFor(Map.class).readValue(jsonStr); } catch (IOException e) { throw new RuntimeException(e); } }
public static <T> T msgpackStrToBean(String jsonStr) { try { return MsagePakMapper.readerFor(Map.class).readValue(jsonStr); } catch (IOException e) { throw new RuntimeException(e); } } }
|