java DateTimeFormatterBuilder fails on testtime(java DateTimeFormatterBuilder 在测试时间失败)
问题描述
我对 DateTimeFormatterBuilder
有一个简单的 jUnit 测试.在运行时,当 Spring-MVC 处理程序 (@RequestParam
)
I have a simple jUnit test for DateTimeFormatterBuilder
.
At runtime it works, when some String
comes on Spring-MVC hanlder (@RequestParam
)
在测试时它以相同的 String
值失败.
At testtime it fails with the same String
value.
测试值:25-May-2018 11:10
待测方法:
public void getTimeDifference(@RequestParam String startDate, @RequestParam String endDate) {
DateTimeFormatter DATE_TIME_FORMAT = new DateTimeFormatterBuilder().parseCaseInsensitive().appendPattern("dd-MMM-yyyy HH:mm").toFormatter();
LocalDateTime.parse(startDate,DATE_TIME_FORMAT);
return messages;
}
测试方法:
@Test
public void testFormat() throws Exception {
final String startDateFormatA = "25-May-2018 11:10";
final String endDateFormatA = "25-May-2018 11:10";
assertEquals("06:00", callDbController.getTimeDifference(startDateFormatA, endDateFormatA)[1]);
}
我的测试:在运行时我设置一个断点并在 Display-View 上测试它:
My Test: At runtime I set a break-point and test it on Display-View:
LocalDateTime.parse("25-May-2018 11:10",DATE_TIME_FORMAT)
在测试时使用相同的 spring-aplication-context 我在运行时做同样的事情,但它失败了.
At testtime with the same spring-aplication-context I do the same like on runtime and it fails.
有人有想法吗?
推荐答案
月份名称是英文的,所以你最好在formatter中设置一个java.util.Locale
.
The month name is in English, so you'd better set a java.util.Locale
in the formatter.
如果不设置,格式化程序将使用 JVM 默认语言环境.而且如果不是英文,可能会报错(而且不同的环境可能有不同的配置,所以最好设置locale而不是依赖JVM的默认值).
If you don't set it, the formatter will use the JVM default locale. And if it's not English, you might get an error (and different environments might have different configurations, so it's better to set the locale instead of relying on the JVM's default).
只需执行 toFormatter(Locale.ENGLISH)
而不是 toFormatter()
即可.
Just do toFormatter(Locale.ENGLISH)
instead of just toFormatter()
and that's it.
这篇关于java DateTimeFormatterBuilder 在测试时间失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:java DateTimeFormatterBuilder 在测试时间失败


基础教程推荐
- 大摇大摆的枚举 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- 从 python 访问 JVM 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01