FastJson 自定义反序列化类
反序列化类
package com.seliote.demo.test; import com.alibaba.fastjson.parser.DefaultJSONParser; import com.alibaba.fastjson.parser.JSONToken; import com.alibaba.fastjson.parser.deserializer.ObjectDeserializer; import org.springframework.util.Assert; import java.lang.reflect.Type; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.time.format.DateTimeParseException; import java.util.LinkedList; import java.util.List; /** * FastJson 时间格式自定义反序列化类 * * @author LiYangDi * @since 2019/12/23 */ public class FastJsonLocalDateTimeDeserializer implements ObjectDeserializer { private static List<DateTimeFormatter> dateTimeFormatters = new LinkedList<>(); static { // Add your own formatter to there dateTimeFormatters.add(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")); dateTimeFormatters.add(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS")); dateTimeFormatters.add(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSSSSS")); dateTimeFormatters.add(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSSSSSSSS")); } @SuppressWarnings("unchecked") @Override public LocalDateTime deserialze(DefaultJSONParser parser, Type type, Object fieldName) { final String input = parser.lexer.stringVal(); LocalDateTime localDateTime = null; for (DateTimeFormatter dateTimeFormatter : dateTimeFormatters) { try { localDateTime = LocalDateTime.parse(input, dateTimeFormatter); // Format success, step over other DateTimeFormatter break; } catch (DateTimeParseException ex) { // do nothing to use next formatter } } Assert.notNull(localDateTime, "FastJson LocalDateTime use" + " FastJsonTimestampDeserializer format error: " + input); return localDateTime; } @Override public int getFastMatchToken() { return JSONToken.LITERAL_INT; } }
测试
POJO
package com.seliote.demo.pojo; import com.alibaba.fastjson.annotation.JSONField; import com.seliote.demo.test.FastJsonLocalDateTimeDeserializer; import lombok.Data; import java.time.LocalDateTime; /** * 测试 POJO * * @author LiYangDi * @since 2019/12/23 */ @Data public class Pojo { @JSONField(name = "time", deserializeUsing = FastJsonLocalDateTimeDeserializer.class) //@JSONField(name = "time") private LocalDateTime localDateTime; @JSONField(name = "name") private String name; }
测试类
package com.seliote.demo.test; import com.alibaba.fastjson.JSONObject; import com.seliote.demo.pojo.Pojo; import lombok.extern.slf4j.Slf4j; /** * <p> * 测试类 * </p> * * @author LiYangDi * @since 2019/11/20 */ @Slf4j public class FastJsonTest { public static void main(String... args) { final String json = "{\"time\":\"2019-12-23 20:18:02.111111111\", \"name\":\"seliote\"}"; Pojo pojo = JSONObject.parseObject(json, Pojo.class); } }
相关推荐
80337960 2020-06-10
ITprivate 2020-03-26
88483063 2020-06-28
88483063 2020-05-25
88103756 2020-05-02
88483063 2020-04-23
80337960 2020-03-26
80337960 2020-02-22
88483063 2020-01-29
83163452 2020-01-28
baijinswpu 2020-01-25
88483063 2020-01-11
86403969 2020-01-04
88103756 2020-01-01
88103756 2019-12-24
fengchao000 2019-12-24
xufankang 2019-12-19
88483063 2019-12-16
80337960 2019-12-13