我有一个Spring Boot Web应用程序,我拒绝控制器中的值,如下所示:
@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
之前,则该值会被拒绝。现在,我在ResourceBundleMessageSource
:
messages_en.properties
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
(dt1
和dt2
都使用其toString()
格式化消息)。
现在,java.text.MessageFormat
确实支持一些格式,即{0,date,short}
。但这只适用于java.util.Date
,而不适用于Joda Time(或任何其他自定义类)。
有没有办法自定义错误消息参数的格式?我不想在验证时这样做(在最终代码中验证器本身与控制器分离,没有关于所选语言的信息,因此它不知道使用什么日期格式。)
答案 0 :(得分:0)
您可以尝试使用控制器中的CustomDateEditor和WebBinding来格式化日期。你可以尝试在你的控制器上添加这样的东西:
@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
希望在将其转换为String时,可以使用format方法显示所需的格式。
否则,您可能需要做一些非常奇怪的事情并将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();