|
|
@@ -0,0 +1,42 @@
|
|
|
+package com.remy.graphql.helper;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
+import com.fasterxml.jackson.core.type.TypeReference;
|
|
|
+import com.fasterxml.jackson.databind.MapperFeature;
|
|
|
+import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
+
|
|
|
+public class BeanHelper {
|
|
|
+
|
|
|
+ private static ObjectMapper mapper;
|
|
|
+
|
|
|
+ static {
|
|
|
+ mapper = new ObjectMapper();
|
|
|
+ mapper.setSerializationInclusion(JsonInclude.Include.NON_EMPTY);
|
|
|
+ mapper.configure(MapperFeature.REQUIRE_SETTERS_FOR_GETTERS, true);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static String toJSON(Object object) {
|
|
|
+ try {
|
|
|
+ String jsonString = mapper.writeValueAsString(object);
|
|
|
+ return jsonString;
|
|
|
+ } catch (Exception e) {
|
|
|
+ throw new RuntimeException(e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static <T> T fromJSON(String json, Class<T> clazz) {
|
|
|
+ try {
|
|
|
+ return (T) mapper.readValue(json, clazz);
|
|
|
+ } catch (Exception e) {
|
|
|
+ throw new RuntimeException(e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static <T> T fromJSON(String json, TypeReference<T> clazz) {
|
|
|
+ try {
|
|
|
+ return (T) mapper.readValue(json, clazz);
|
|
|
+ } catch (Exception e) {
|
|
|
+ throw new RuntimeException(e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|