在项目中LocalDateTime 进行json转换时,抛出序列化异常,查找解决方案,记录下来,方便备查。
Caused by: com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Java 8 date/time type java.time.LocalDateTime
not supported by default:
add Module “com.fasterxml.jackson.datatype:jackson-datatype-jsr310” to enable handling
按照错误提示信息,加入jackson依赖。
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.12.3</version>
</dependency>
在指定的日期字段定义时,添加序列化和反序列化的注解。
@JsonSerialize(using = LocalDateTimeSerializer.class)
@JsonDeserialize(using = LocalDateTimeDeserializer.class)
private LocalDateTime createdTime;
/**
* 功能:测试LocateTime转Json
*/
import com.alibaba.fastjson.JSONObject;
@Test
public void testLocateTimeToJson() {
LocalDateTime time = LocalDateTime.now();
logger.info("当前日期为:%s", time);
String str = JSONObject.toJSONString(time);
logger.info("日期转JSON-LocateTimeToJson返回结果为:%s", str);
}
执行结果如下