Deserialize Java 8 LocalDateTime with JacksonMapper
我已经阅读了SO中关于和JSON属性之间的序列化和反序列化的几个问题以及答案,但我似乎无法使其正常工作。java.time.LocalDateTime
我已经设法将我的Spring Boot应用程序配置为以我想要的格式返回日期(),但我在JSON中接受这种格式的值时遇到问题。YYY-MM-dd HH:mm
这些是我到目前为止所做的所有事情:
添加了对以下各项的 maven 依赖项:jsr310
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
在我的主类中指定:jsr310
@EntityScan(basePackageClasses = { App.class, Jsr310JpaConverters.class })
已禁用序列化作为时间戳:application.properties
spring.jackson.serialization.write_dates_as_timestamps=false
这是我对日期时间的实体映射:
@Column(name = "start_date")
@DateTimeFormat(iso = DateTimeFormat.ISO.TIME)
@JsonFormat(pattern = "YYYY-MM-dd HH:mm")
private LocalDateTime startDate;
在我的数据库中,我以以下格式将此日期存储为 TIMESTAMP:。2016-12-01T23:00:00+00:00
如果我通过控制器访问此实体,它将返回具有正确 startDate 格式的 JSON。当我尝试发布它并使用格式反序列化它时,我得到以下异常:YYYY-MM-dd HH:mm
{
"timestamp": "2016-10-30T14:22:25.285+0000",
"status": 400,
"error": "Bad Request",
"exception": "org.springframework.http.converter.HttpMessageNotReadableException",
"message": "Could not read document: Can not deserialize value of type java.time.LocalDateTime from String \"2017-01-01 20:00\": Text '2017-01-01 20:00' could not be parsed: Unable to obtain LocalDateTime from TemporalAccessor: {MonthOfYear=1, WeekBasedYear[WeekFields[SUNDAY,1]]=2017, DayOfMonth=1},ISO resolved to 20:00 of type java.time.format.Parsed\n at [Source: java.io.PushbackInputStream@679a734d; line: 6, column: 16] (through reference chain: com.gigsterous.api.model.Event[\"startDate\"]); nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: Can not deserialize value of type java.time.LocalDateTime from String \"2017-01-01 20:00\": Text '2017-01-01 20:00' could not be parsed: Unable to obtain LocalDateTime from TemporalAccessor: {MonthOfYear=1, WeekBasedYear[WeekFields[SUNDAY,1]]=2017, DayOfMonth=1},ISO resolved to 20:00 of type java.time.format.Parsed\n at [Source: java.io.PushbackInputStream@679a734d; line: 6, column: 16] (through reference chain: com.gigsterous.api.model.Event[\"startDate\"])",
"path": "/api/events"
}
我知道关于这个话题有很多答案,但是遵循它们并尝试几个小时并没有帮助我弄清楚我做错了什么,所以如果有人能向我指出我错过了什么,我会很高兴。感谢您对此的任何输入!
编辑:这些是该过程中涉及的所有类:
存储 库:
@Repository
public interface EventRepository extends PagingAndSortingRepository<Event, Long> {
}
控制器:
@RequestMapping(method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Event> createEvent(@RequestBody Event event) {
return new ResponseEntity<>(eventRepo.save(event), HttpStatus.CREATED);
}
My JSON request payalod:
{
"name": "Test",
"startDate": "2017-01-01 20:00"
}
事件:
@Entity
@Table(name = "events")
@Getter
@Setter
public class Event {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "event_id")
private long id;
@Column(name = "name")
private String name;
@Column(name = "start_date")
@DateTimeFormat(iso = DateTimeFormat.ISO.TIME)
@JsonFormat(pattern = "YYYY-MM-dd HH:mm")
private LocalDateTime startDate;
}