-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMapperUtil.java
33 lines (28 loc) · 881 Bytes
/
MapperUtil.java
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
package by.andd3dfx.mapper;
import com.fasterxml.jackson.databind.ObjectMapper;
import lombok.SneakyThrows;
public class MapperUtil {
private static ObjectMapper objectMapper = new ObjectMapper();
/**
* Deserialize object from JSON string
*
* @param jsonString JSON string
* @param aClass object class
* @param <T> type of object class
* @return deserialized object of class type T
*/
@SneakyThrows
public static <T> T jsonToObject(String jsonString, Class<T> aClass) {
return objectMapper.readValue(jsonString, aClass);
}
/**
* Serialize object to string
*
* @param object object for serialization
* @return string with serialized object
*/
@SneakyThrows
public static String toJson(Object object) {
return objectMapper.writeValueAsString(object);
}
}