Springboot中使用redis获取存入的数据,使用localDateTime的字段报错:
localDateTime为JDK8新添加的时间格式。它无法直接使用构造,此时需要在pom中添加依赖:
<!--解决localDateTime无法反序列化添加的包依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-json</artifactId>
</dependency>
如果已经添加该依赖依然报错,则需要再加入jsr的依赖
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
之后再在需要使用的变量上添加注解(根据需求选择性添加)即可:
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonSerialize(using = LocalDateTimeSerializer.class)
@JsonDeserialize(using = LocalDateTimeDeserializer.class)
private LocalDateTime gmtModified;