使用Jackson 封装一个JsonUtil,进行序列化和反序列
2019-06-21 本文已影响0人
GALAace
用于JSON的序列化和反序列化操作的Util类
首先需要在pom.xml中引入Jackson
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.13</version>
</dependency>
创建JsonUtil类
import com.google.common.collect.Lists;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.codehaus.jackson.map.DeserializationConfig;
import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.map.SerializationConfig;
import org.codehaus.jackson.map.annotate.JsonSerialize.Inclusion;
import org.codehaus.jackson.type.JavaType;
import org.codehaus.jackson.type.TypeReference;
@Slf4j
public class JsonUtil {
private static ObjectMapper objectMapper = new ObjectMapper();
static{
//对象的所有字段全部列入
objectMapper.setSerializationInclusion(Inclusion.ALWAYS);
//取消默认转换timestamps形式
objectMapper.configure(SerializationConfig.Feature.WRITE_DATES_AS_TIMESTAMPS,false);
//忽略空Bean转json的错误
objectMapper.configure(SerializationConfig.Feature.FAIL_ON_EMPTY_BEANS,false);
//所有的日期格式都统一为以下的样式,即yyyy-MM-dd HH:mm:ss
objectMapper.setDateFormat(new SimpleDateFormat(DateTimeUtil.STANDARD_FORMAT));
//忽略在json字符串中存在,但是在java对象中不存在对应属性的情况。防止错误
objectMapper.configure(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES,false);
}
/**
* @Description: 对象转字符串
* @Auther: GALAace
* @Date: 2019/6/21 23:15
*/
public static <T> String obj2String(T obj){
if(obj == null){
return null;
}
try {
return obj instanceof String ? (String)obj : objectMapper.writeValueAsString(obj);
} catch (Exception e) {
log.warn("Parse Object to String error",e);
return null;
}
}
/**
* @Description: 对象转的字符串(格式化后)
* @Auther: GALAace
* @Date: 2019/6/21 23:15
*/
public static <T> String obj2StringPretty(T obj){
if(obj == null){
return null;
}
try {
return obj instanceof String ? (String)obj : objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(obj);
} catch (Exception e) {
log.warn("Parse Object to String error",e);
return null;
}
}
/**
* @Description: 字符串转对象
* @Auther: GALAace
* @Date: 2019/6/21 23:17
*/
public static <T> T string2Obj(String str,Class<T> clazz){
if(StringUtils.isEmpty(str) || clazz == null){
return null;
}
try {
return clazz.equals(String.class)? (T)str : objectMapper.readValue(str,clazz);
} catch (Exception e) {
log.warn("Parse String to Object error",e);
return null;
}
}
/**
* @Description: 字符串转复杂对象(List,Map,Set等)
* @Auther: GALAace
* @Date: 2019/6/22 0:20
*/
public static <T> T string2Obj(String str, TypeReference<T> typeReference){
if(StringUtils.isEmpty(str) || typeReference == null){
return null;
}
try {
return (T)(typeReference.getType().equals(String.class)? str : objectMapper.readValue(str,typeReference));
} catch (Exception e) {
log.warn("Parse String to Object error",e);
return null;
}
}
/**
* @Description: 字符串转复杂对象(可变长)
* @Auther: GALAace
* @Date: 2019/6/22 0:21
*/
public static <T> T string2Obj(String str,Class<?> collectionClass,Class<?>... elementClasses){
JavaType javaType = objectMapper.getTypeFactory().constructParametricType(collectionClass,elementClasses);
try {
return objectMapper.readValue(str,javaType);
} catch (Exception e) {
log.warn("Parse String to Object error",e);
return null;
}
}
以下是Jackson部分源码解析,用于更好的理解和修改上面代码。
//对象的所有字段全部列入
objectMapper.setSerializationInclusion(Inclusion.ALWAYS);
public enum Inclusion
{
// 所有字段
ALWAYS,
//非空(null)字段
NON_NULL,
//非默认值的字段(如果设置的值与默认值相同,也不会被序列化)
NON_DEFAULT,
//非空字符串,空集合等(比NON_NULL更严格)
NON_EMPTY
;
}
//取消默认转换timestamps形式
objectMapper.configure(SerializationConfig.Feature.WRITE_DATES_AS_TIMESTAMPS,false);
//默认为true,当为true时,会将date类型字段序列化为时间戳的形式。false时,序列化为yyyy-MM-ddTHH:mm:ss.fffffffK格式
WRITE_DATES_AS_TIMESTAMPS(true),
//忽略空Bean转json的错误
objectMapper.configure(SerializationConfig.Feature.FAIL_ON_EMPTY_BEANS,false);
//默认为true,空Bean转json时报异常。为false时转为:{ },不报错
FAIL_ON_EMPTY_BEANS(true),
//忽略在json字符串中存在,但是在java对象中不存在对应属性的情况。防止错误
objectMapper.configure(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES,false);
//默认为true, 例如当类中删除了几个属性,在反序列化时就会报错
FAIL_ON_UNKNOWN_PROPERTIES(true),