SpringBoot中java8的java.time.Local
2020-01-14 本文已影响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();