POM

  1. <!-- Json Begin -->
  2. <dependency>
  3. <groupId>com.fasterxml.jackson.core</groupId>
  4. <artifactId>jackson-core</artifactId>
  5. <version>2.9.5</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>com.fasterxml.jackson.core</groupId>
  9. <artifactId>jackson-databind</artifactId>
  10. <version>2.9.5</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>com.fasterxml.jackson.core</groupId>
  14. <artifactId>jackson-annotations</artifactId>
  15. <version>2.9.5</version>
  16. </dependency>
  17. <!-- Json End -->

注解

@JsonProperty

@JsonProperty 注解指定一个属性用于 JSON 映射,默认情况下映射的 JSON 属性与注解的属性名称相同,不过可以使用该注解的 value 值修改 JSON 属性名,该注解还有一个 index 属性指定生成 JSON 属性的顺序,如果有必要的话。

@JsonIgnore

@JsonIgnore 注解用于排除某个属性,这样该属性就不会被 Jackson 序列化和反序列化。

@JsonIgnoreProperties

@JsonIgnoreProperties 注解是类注解。在序列化为 JSON 的时候,@JsonIgnoreProperties({“prop1”, “prop2”}) 会忽略 pro1 和 pro2 两个属性。在从 JSON 反序列化为 Java 类的时候,@JsonIgnoreProperties(ignoreUnknown=true) 会忽略所有没有 Getter 和 Setter 的属性。该注解在 Java 类和 JSON 不完全匹配的时候很有用。

@JsonIgnoreType

@JsonIgnoreType 也是类注解,会排除所有指定类型的属性。

@JsonPropertyOrder

@JsonPropertyOrder @JsonProperty 的 index 属性类似,指定属性序列化时的顺序。

@JsonRootName

@JsonRootName 注解用于指定 JSON 根属性的名称。

工具类

  1. import com.fasterxml.jackson.annotation.JsonInclude;
  2. import com.fasterxml.jackson.core.type.TypeReference;
  3. import com.fasterxml.jackson.databind.DeserializationFeature;
  4. import com.fasterxml.jackson.databind.JavaType;
  5. import com.fasterxml.jackson.databind.ObjectMapper;
  6. import java.util.ArrayList;
  7. import java.util.HashMap;
  8. import java.util.List;
  9. import java.util.Map;
  10. /**
  11. * Jackson 工具类
  12. * <p>Title: MapperUtils</p>
  13. * <p>Description: </p>
  14. *
  15. */
  16. public class MapperUtils {
  17. private final static ObjectMapper objectMapper = new ObjectMapper();
  18. public static ObjectMapper getInstance() {
  19. return objectMapper;
  20. }
  21. /**
  22. * 转换为 JSON 字符串
  23. *
  24. * @param obj
  25. * @return
  26. * @throws Exception
  27. */
  28. public static String obj2json(Object obj) throws Exception {
  29. return objectMapper.writeValueAsString(obj);
  30. }
  31. /**
  32. * 转换为 JSON 字符串,忽略空值
  33. *
  34. * @param obj
  35. * @return
  36. * @throws Exception
  37. */
  38. public static String obj2jsonIgnoreNull(Object obj) throws Exception {
  39. ObjectMapper mapper = new ObjectMapper();
  40. mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
  41. return mapper.writeValueAsString(obj);
  42. }
  43. /**
  44. * 转换为 JavaBean
  45. *
  46. * @param jsonString
  47. * @param clazz
  48. * @return
  49. * @throws Exception
  50. */
  51. public static <T> T json2pojo(String jsonString, Class<T> clazz) throws Exception {
  52. objectMapper.configure(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY, true);
  53. return objectMapper.readValue(jsonString, clazz);
  54. }
  55. /**
  56. * 字符串转换为 Map<String, Object>
  57. *
  58. * @param jsonString
  59. * @return
  60. * @throws Exception
  61. */
  62. public static <T> Map<String, Object> json2map(String jsonString) throws Exception {
  63. ObjectMapper mapper = new ObjectMapper();
  64. mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
  65. return mapper.readValue(jsonString, Map.class);
  66. }
  67. /**
  68. * 字符串转换为 Map<String, T>
  69. */
  70. public static <T> Map<String, T> json2map(String jsonString, Class<T> clazz) throws Exception {
  71. Map<String, Map<String, Object>> map = objectMapper.readValue(jsonString, new TypeReference<Map<String, T>>() {
  72. });
  73. Map<String, T> result = new HashMap<String, T>();
  74. for (Map.Entry<String, Map<String, Object>> entry : map.entrySet()) {
  75. result.put(entry.getKey(), map2pojo(entry.getValue(), clazz));
  76. }
  77. return result;
  78. }
  79. /**
  80. * 深度转换 JSON 成 Map
  81. *
  82. * @param json
  83. * @return
  84. */
  85. public static Map<String, Object> json2mapDeeply(String json) throws Exception {
  86. return json2MapRecursion(json, objectMapper);
  87. }
  88. /**
  89. * 把 JSON 解析成 List,如果 List 内部的元素存在 jsonString,继续解析
  90. *
  91. * @param json
  92. * @param mapper 解析工具
  93. * @return
  94. * @throws Exception
  95. */
  96. private static List<Object> json2ListRecursion(String json, ObjectMapper mapper) throws Exception {
  97. if (json == null) {
  98. return null;
  99. }
  100. List<Object> list = mapper.readValue(json, List.class);
  101. for (Object obj : list) {
  102. if (obj != null && obj instanceof String) {
  103. String str = (String) obj;
  104. if (str.startsWith("[")) {
  105. obj = json2ListRecursion(str, mapper);
  106. } else if (obj.toString().startsWith("{")) {
  107. obj = json2MapRecursion(str, mapper);
  108. }
  109. }
  110. }
  111. return list;
  112. }
  113. /**
  114. * 把 JSON 解析成 Map,如果 Map 内部的 Value 存在 jsonString,继续解析
  115. *
  116. * @param json
  117. * @param mapper
  118. * @return
  119. * @throws Exception
  120. */
  121. private static Map<String, Object> json2MapRecursion(String json, ObjectMapper mapper) throws Exception {
  122. if (json == null) {
  123. return null;
  124. }
  125. Map<String, Object> map = mapper.readValue(json, Map.class);
  126. for (Map.Entry<String, Object> entry : map.entrySet()) {
  127. Object obj = entry.getValue();
  128. if (obj != null && obj instanceof String) {
  129. String str = ((String) obj);
  130. if (str.startsWith("[")) {
  131. List<?> list = json2ListRecursion(str, mapper);
  132. map.put(entry.getKey(), list);
  133. } else if (str.startsWith("{")) {
  134. Map<String, Object> mapRecursion = json2MapRecursion(str, mapper);
  135. map.put(entry.getKey(), mapRecursion);
  136. }
  137. }
  138. }
  139. return map;
  140. }
  141. /**
  142. * 将 JSON 数组转换为集合
  143. *
  144. * @param jsonArrayStr
  145. * @param clazz
  146. * @return
  147. * @throws Exception
  148. */
  149. public static <T> List<T> json2list(String jsonArrayStr, Class<T> clazz) throws Exception {
  150. JavaType javaType = getCollectionType(ArrayList.class, clazz);
  151. List<T> list = (List<T>) objectMapper.readValue(jsonArrayStr, javaType);
  152. return list;
  153. }
  154. /**
  155. * 获取泛型的 Collection Type
  156. *
  157. * @param collectionClass 泛型的Collection
  158. * @param elementClasses 元素类
  159. * @return JavaType Java类型
  160. * @since 1.0
  161. */
  162. public static JavaType getCollectionType(Class<?> collectionClass, Class<?>... elementClasses) {
  163. return objectMapper.getTypeFactory().constructParametricType(collectionClass, elementClasses);
  164. }
  165. /**
  166. * 将 Map 转换为 JavaBean
  167. *
  168. * @param map
  169. * @param clazz
  170. * @return
  171. */
  172. public static <T> T map2pojo(Map map, Class<T> clazz) {
  173. return objectMapper.convertValue(map, clazz);
  174. }
  175. /**
  176. * 将 Map 转换为 JSON
  177. *
  178. * @param map
  179. * @return
  180. */
  181. public static String mapToJson(Map map) {
  182. try {
  183. return objectMapper.writeValueAsString(map);
  184. } catch (Exception e) {
  185. e.printStackTrace();
  186. }
  187. return "";
  188. }
  189. /**
  190. * 将 JSON 对象转换为 JavaBean
  191. *
  192. * @param obj
  193. * @param clazz
  194. * @return
  195. */
  196. public static <T> T obj2pojo(Object obj, Class<T> clazz) {
  197. return objectMapper.convertValue(obj, clazz);
  198. }
  199. /**
  200. * 将指定节点的 JSON 数据转换为 JavaBean
  201. *
  202. * @param jsonString
  203. * @param clazz
  204. * @return
  205. * @throws Exception
  206. */
  207. public static <T> T json2pojoByTree(String jsonString, String treeNode, Class<T> clazz) throws Exception {
  208. JsonNode jsonNode = objectMapper.readTree(jsonString);
  209. JsonNode data = jsonNode.findPath(treeNode);
  210. return json2pojo(data.toString(), clazz);
  211. }
  212. /**
  213. * 将指定节点的 JSON 数组转换为集合
  214. *
  215. * @param jsonStr JSON 字符串
  216. * @param treeNode 查找 JSON 中的节点
  217. * @return
  218. * @throws Exception
  219. */
  220. public static <T> List<T> json2listByTree(String jsonStr, String treeNode, Class<T> clazz) throws Exception {
  221. JsonNode jsonNode = objectMapper.readTree(jsonStr);
  222. JsonNode data = jsonNode.findPath(treeNode);
  223. return json2list(data.toString(), clazz);
  224. }
  225. }