SpringBoot TestRestTemplate and LocalDateTime not working
问题 I am using LocalDateTime in my model, after including LocalDateTimeDeserializer, converted the bean field to @NotNull @Column(name = "created") @JsonDeserialize(using = LocalDateTimeDeserializer.class) private LocalDateTime created; and included the spring.jackson.serialization.WRITE_DATES_AS_TIMESTAMPS = false property in the SpringBoot's application.properties file, the application is finally able to deserialize the JSON and show properly like, "created": "2018-04-22T21:21:53.025", But,