我有一个旧程序,我将其升级到Java 8.现在我想利用LocalDateTime。我已经更新了实体,在数据库中,值为10-APR-1990
。
但是我收到以下错误:
java.time.format.DateTimeParseException: Text '10-APR-90' could not be parsed at index 3
在我的测试中,我尝试使用DateTimeFormatter
解析它。
测试:
@Test
public void testLocalDateTime() throws Exception {
DateTimeFormatter formatter =
DateTimeFormatter.ofPattern("dd-MMM-yy", Locale.US);
Tcan1990 applicant = tcan1990Repository.findOne(new Tcan1990PK("000000009", 888067));
assertEquals(LocalDateTime.parse("10-APR-90",formatter),applicant.getPymtDt());
}
答案 0 :(得分:2)
更新您的测试用例以使用不区分大小写的格式化程序,并将日期字符串解析为LocalDate,并将时间设置为当天的开始以获取LocalDateTime。
@Test
public void testLocalDateTime() throws Exception {
DateTimeFormatter formatter = new DateTimeFormatterBuilder().parseCaseInsensitive().appendPattern("dd-MMM-yyyy").toFormatter(Locale.US);
Tcan1990 applicant = tcan1990Repository.findOne(new Tcan1990PK("000000009", 888067));
assertEquals(LocalDate.parse("10-APR-1990", formatter).atStartOfDay(), applicant.getPymtDt());
}
答案 1 :(得分:0)
两件事:
"10-Apr-90"
。LocalDate
而不是LocalDateTime
。