美文网首页
SpringBoot中java8的java.time.Local

SpringBoot中java8的java.time.Local

作者: 海上笙明玥 | 来源:发表于2020-01-14 17:03 被阅读0次

在Java属性上添加@JsonSerialize和@JsonFormat注解说明

/**

* 创建时间

*/

@JsonSerialize(using = LocalDateTimeSerializer.class)

@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss.SSSSSS")

@Column(name = "create_time")

private LocalDateTime createTime = LocalDateTime.now();

相关文章

网友评论

      本文标题:SpringBoot中java8的java.time.Local

      本文链接:https://www.haomeiwen.com/subject/xeyaactx.html