Json jackson 解析错误,转换为 java.time.LocalDateTime 时发生 InvalidDefinitionException

Json parse error with jackson, InvalidDefinitionException occurs while converting to java.time.LocalDateTime

使用 jackson 库将 json 字符串转换为 kotlin 对象

错误

Exception in thread "main" com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of `java.time.LocalDateTime` (no Creators, like default construct, exist): no String-argument constructor/factory method to deserialize from String value ('2019-01-14T18:50:31.856+09:00')
 at [Source: (String)"{"name": "Kolineer", "age": "26", "messages" : ["message a","message b"],"transacted_at":"2019-01-14T18:50:31.856+09:00"}"; line: 1, column: 90] (through reference chain: com.test.utils.Person["transacted_at"])

这是代码

data class Person(val name: String, val age: Int, val messages: List<String>,
                  @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSXXX")
                  @JsonProperty("transacted_at")
                  val transactedAt: LocalDateTime )

fun main(args: Array<String>) {

    val json = """{"name": "Kolineer", "age": "26", "messages" : ["message a","message b"],"transacted_at":"2019-01-14T18:50:31.856+09:00"}"""
    val mapper = jacksonObjectMapper()
    mapper.configure(SerializationFeature.WRITE_DATE_KEYS_AS_TIMESTAMPS, false);
    mapper.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS);

    var person: Person = mapper.readValue<Person>(json)
    println(person)
}

要序列化/反序列化Java8日期/时间类,你需要使用这个jackson模块。

<dependency>
  <groupId>com.fasterxml.jackson.datatype</groupId>
  <artifactId>jackson-datatype-jsr310</artifactId>
  <version>2.8.8</version>
</dependency>

要手动将此模块注册到 ObjectMapper,

ObjectMapper mapper = new ObjectMapper();
mapper.findAndRegisterModules();

注意:不懂kotlin语法,请将以上java代码转换成kotlin。