gpt4 book ai didi

java - 格式化 spring 错误消息参数

转载 作者:搜寻专家 更新时间:2023-11-01 03:48:28 24 4
gpt4 key购买 nike

我有一个 Spring Boot Web 应用程序,我拒绝 Controller 中的值,如下所示:

@RequestMapping(value = "/create", method = RequestMethod.POST)
public String createSubmit(@ModelAttribute("createForm") CreateForm createForm, BindingResult result, SessionStatus status) {
DateTime dt1 = createForm.getDt1();
DateTime dt2 = createForm.getDt2();

if (!dt1.isBefore(dt2)){
result.rejectValue("fieldId", "validation.isbefore", new Object[]{dt1, dt2}, "first date must be before second");
}
}

因此,如果日期 dt1 不在 dt2 之前,该值将被拒绝。现在,我在 messages_en.properties 中有了非常标准的 ResourceBundleMessageSource:

validation.isbefore = Start date {0} must be before end date {1}

当发生验证错误时,我收到一条消息 Start date 3/21/16 5:01 PM must be before end date 3/20/16 5:01 PM(两者 dt1dt2 使用它们的 toString() 来格式化消息)。

现在,java.text.MessageFormat 确实支持一些格式,即 {0,date,short}。但这仅适用于 java.util.Date,不适用于 Joda Time(或与此相关的任何其他自定义类)。

有没有办法自定义错误消息参数的格式?我不想在验证时这样做(在最终代码中, validator 本身与 Controller 分离,没有关于所选语言的信息,因此它不知道要使用什么日期格式)。

最佳答案

您可以尝试在 Controller 中使用 CustomDateEditor 和 WebBinding 来格式化日期。您可以尝试将类似这样的内容添加到您的 Controller 中:

@Controller
public class MyController {
@InitBinder
public void customizeBinding (WebDataBinder binder) {
SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd");
binder.registerCustomEditor(Date.class, "dt1",
new CustomDateEditor(dateFormatter, true));
binder.registerCustomEditor(Date.class, "dt2",
new CustomDateEditor(dateFormatter, true));
}

@RequestMapping(value = "/create", method = RequestMethod.POST)
public String createSubmit(@ModelAttribute("createForm") CreateForm
createForm, BindingResult result, SessionStatus status) {
DateTime dt1 = createForm.getDt1();
DateTime dt2 = createForm.getDt2();

if (!dt1.isBefore(dt2)){
result.rejectValue("fieldId", "validation.isbefore", new
Object[]{dt1, dt2}, "first date must be before second");
}
}

}

我使用并修改了这个例子:http://www.logicbig.com/tutorials/spring-framework/spring-web-mvc/spring-custom-property-editor/

这是内置属性编辑器的官方 Spring 文档:http://docs.spring.io/spring-framework/docs/current/spring-framework-reference/html/validation.html#beans-beans-conversion

希望它能够在将其转换为字符串时使用格式方法显示您想要的格式。

否则,您可能不得不做一些非常奇怪的事情,将 DateTime 扩展到您自己的日期时间并覆盖 toString() 方法,但这似乎是一种过于蛮力的解决方案。

 public class MyDateTime extends DateTime {

@Override
public toString() {
return new SimpleDateFormat("yyyy-MM-dd).format(this);
}
}

然后

MyDateTime dt1 = createForm.getDt1();
MyDateTime dt2 = createForm.getDt2();

关于java - 格式化 spring 错误消息参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36136172/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com