SpringBoot+MyBatis Plus对Map中Date格式转换的处理

乎语百科 219 0

在 SpringBoot 项目中, 如何统一 JSON 格式化中的日期格式

问题

现在的关系型数据库例如PostgreSQL/MySQL, 都已经对 JSON 类型提供相当丰富的功能, 项目中对于不需要检索但是又需要结构化的存储, 会在数据库中产生很多 JSON 类型的字段, 与 Jackson 做对象的序列化和反序列化配合非常方便.

如果 JSON 都是类定义的, 这个序列化和反序列化就非常透明 -- 不需要任何干预, 写进去是什么, 读出来就是什么. 但是如果 JSON 在 Java 代码中是定义为一个 Map, 例如 Map<String, Object> 那么就有问题了, 对于 Date 类型的数据, 在存入之前是 Date, 取出来之后就变成 Long 了.

  1. SomePO po = new SomePO();

  2. //...

  3. Map<String, Object> map = new HashMap<>();

  4. map.put("k1", new Date());

  5. po.setProperties(map);

  6. //...

  7. mapper.insert(po);

  8. //...

  9. SomePO dummy = mapper.select(po.id);

  10. // 这里的k1已经变成了 Long 类型

  11. Object k1 = dummy.getProperties().get("k1");

原因

不管是使用原生的 MyBatis 还是包装后的 MyBatis Plus, 在对 JSON 类型字段进行序列化和反序列化时, 都需要借助类型判断, 调用对应的处理逻辑, 大部分情况, 使用的是默认的 Jackson 的 ObjectMapper, 而 ObjectMapper 对 Date 类型默认的序列化方式就是取时间戳, 对于早于1970年之前的日期, 生成的是一个负的长整数, 对于1970年之后的日期, 生成的是一个正的长整数.

查看 ObjectMapper 的源码, 可以看到其对Date格式的序列化和反序列化方式设置于_serializationConfig 和 _deserializationConfig 这两个成员变量中, 可以通过 setDateFormat() 进行修改

  1. public class ObjectMapper extends ObjectCodec implements Versioned, Serializable {

  2.    //...

  3.    protected SerializationConfig _serializationConfig;

  4.    protected DeserializationConfig _deserializationConfig;

  5.    //...

  6.    public ObjectMapper setDateFormat(DateFormat dateFormat) {

  7.        this._deserializationConfig = (DeserializationConfig)this._deserializationConfig.with(dateFormat);

  8.        this._serializationConfig = this._serializationConfig.with(dateFormat);

  9.        return this;

  10.    }

  11.    public DateFormat getDateFormat() {

  12.        return this._serializationConfig.getDateFormat();

  13.    }

  14. }

默认的序列化反序列化选项, 使用了一个常量 WRITE_DATES_AS_TIMESTAMPS, 在类 SerializationConfig 中进行判断, 未指定时使用的是时间戳

  1. public SerializationConfig with(DateFormat df) {

  2. SerializationConfig cfg = (SerializationConfig)super.with(df);

  3. return df == null ? cfg.with(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS) : cfg.without(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS);

  4. }

实际的转换工作在 SerializerProvider 类中, 转换方法为

  1. public final void defaultSerializeDateValue(long timestamp, JsonGenerator gen) throws IOException {

  2. if (this.isEnabled(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)) {

  3. gen.writeNumber(timestamp);

  4. } else {

  5. gen.writeString(this._dateFormat().format(new Date(timestamp)));

  6. }

  7. }

  8. public final void defaultSerializeDateValue(Date date, JsonGenerator gen) throws IOException {

  9. if (this.isEnabled(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)) {

  10. gen.writeNumber(date.getTime());

  11. } else {

  12. gen.writeString(this._dateFormat().format(date));

  13. }

  14. }

解决

局部方案

1. 字段注解

这种方式可以用在固定的类成员变量上, 不改变整体行为

  1. public class Event {

  2.    public String name;

  3.    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "dd-MM-yyyy hh:mm:ss")

  4.    public Date eventDate;

  5. }

另外还可以自定义序列化反序列化方法, 实现 StdSerializer

  1. public class CustomDateSerializer extends StdSerializer<Date> {

  2.    //...

  3. }

就可以在 @JsonSerialize 注解中使用

  1. public class Event {

  2.    public String name;

  3.    @JsonSerialize(using = CustomDateSerializer.class)

  4.    public Date eventDate;

  5. }

2. 修改 ObjectMapper

通过 ObjectMapper.setDateFormat() 设置日期格式, 改变默认的日期序列化反序列化行为. 这种方式只对调用此ObjectMapper的场景有效

  1. private static ObjectMapper createObjectMapper() {

  2. ObjectMapper objectMapper = new ObjectMapper();

  3. SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

  4. objectMapper.setDateFormat(df);

  5. return objectMapper;

  6. }

因为 ObjectMapper 一般是当作线程安全使用的, 而 SimpleDateFormat 并非线程安全, 在这里使用是否会有问题? 关于这个疑虑, 可以查看 这个链接

@StaxMan: I am a bit concerned if ObjectMapper is still thread-safe after ObjectMapper#setDateFormat() is called. It is known that SimpleDateFormat is not thread safe, thus ObjectMapper won't be unless it clones e.g. SerializationConfig before each writeValue() (I doubt). Could you debunk my fear? – dma_k Aug 2, 2013 at 12:09

DateFormat is indeed cloned under the hood. Good suspicion there, but you are covered. – StaxMan Aug 2, 2013 at 19:43

3. 修改 SpringBoot 配置

增加配置 spring.jackson.date-format=yyyy-MM-dd HH:mm:ss, 这种配置, 只对 Spring BeanFactory 中创建的 Jackson ObjectMapper有效, 例如 HTTP 请求和响应中对 Date 类型的转换

  1. spring:

  2.  ...

  3.  jackson:

  4.    date-format: yyyy-MM-dd HH:mm:ss

整体方案

国内项目, 几乎都会希望落库时日期就是日期的样子(方便看数据库表), 所谓日期的样子就是yyyy-MM-dd HH:mm:ss格式的字符串. 如果怕麻烦, 就通通都用这个格式了.

这样统一存在的隐患是丢失毫秒部分. 这个问题业务人员基本上是不会关心的. 如果需要, 就在格式中加上.

第一是 Spring 配置, 这样所有的请求响应都统一了

  1. spring:

  2.  ...

  3.  jackson:

  4.    date-format: yyyy-MM-dd HH:mm:ss

第二是定义一个工具类, 把 ObjectMapper 自定义一下, 这样所有手工转换的地方也统一了, 注意留一个getObjectMapper()方法

  1. public class JacksonUtil {

  2.    private static final Logger log = LoggerFactory.getLogger(JacksonUtil.class);

  3.    private static final ObjectMapper MAPPER = createObjectMapper();

  4.    private JacksonUtil() {}

  5.    private static ObjectMapper createObjectMapper() {

  6.        ObjectMapper objectMapper = new ObjectMapper();

  7.        objectMapper.configure(JsonGenerator.Feature.AUTO_CLOSE_TARGET, false);

  8.        objectMapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);

  9.        SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

  10.        objectMapper.setDateFormat(df);

  11.        return objectMapper;

  12.    }

  13.    public static ObjectMapper getObjectMapper() {

  14.        return MAPPER;

  15.    }

  16. }

第三是启动后修改 MyBatisPlus 的设置, 即下面的 changeObjectMapper() 这个方法, 直接换成了上面工具类中定义的 ObjectMapper, 这样在 MyBatis 读写数据库时的格式也统一了.

  1. @Configuration

  2. @MapperScan(basePackages = {"com.somewhere.commons.impl.mapper"})

  3. public class MybatisPlusConfig {

  4.    @Bean

  5.    public MybatisPlusInterceptor mybatisPlusInterceptor() {

  6.        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();

  7.        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.POSTGRE_SQL));

  8.        interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor());

  9.        return interceptor;

  10.    }

  11.    @PostConstruct

  12.    public void changeObjectMapper() {

  13.        // This will unify the date format with util methods

  14.        JacksonTypeHandler.setObjectMapper(JacksonUtil.getObjectMapper());

  15.    }

  16. }


    标签: # SpringBoot # MyBatis # Date

    留言评论

    • 这篇文章还没有收到评论,赶紧来抢沙发吧~