3

我正在分析 spring-mvc-showcase 示例项目(spring-mvc-showcase github)。当我点击不正确的日期格式(屏幕截图上的出生日期字段)时,对 JSP 页面上显示验证响应的方式感到困惑。在没有那些 ConversionFailedException 详细信息的情况下,如何使用一些自定义消息使其对用户更加友好?

截屏:

在此处输入图像描述

应用注释驱动的验证。下面是代表birthDate 字段的bean 类的代码段。

FormBean.java

@DateTimeFormat(iso=ISO.DATE)
@Past
private Date birthDate;

负责表单提交的方法:

FormController.java

@RequestMapping(method=RequestMethod.POST)
public String processSubmit(@Valid FormBean formBean, BindingResult result, 
                            @ModelAttribute("ajaxRequest") boolean ajaxRequest, 
                            Model model, RedirectAttributes redirectAttrs) {
    if (result.hasErrors()) {
        return null;
    }
    // Typically you would save to a db and clear the "form" attribute from the session 
    // via SessionStatus.setCompleted(). For the demo we leave it in the session.
    String message = "Form submitted successfully.  Bound " + formBean;
    // Success response handling
    if (ajaxRequest) {
        // prepare model for rendering success message in this request
        model.addAttribute("message", message);
        return null;
    } else {
        // store a success message for rendering on the next request after redirect
        // redirect back to the form to render the success message along with newly bound values
        redirectAttrs.addFlashAttribute("message", message);
        return "redirect:/form";            
    }
}
4

2 回答 2

9

请注意,您正在处理此处的绑定错误。这些是在执行实际 JSR-303 验证之前很久就抛出的,它们会覆盖失败字段的 JSR-303 约束违规。

绑定错误的代码是typeMismatch. 因此,您可以将其添加到您的消息属性中:

typeMismatch.birthDate = Invalid birth date format.

检查 JavaDoc 中的DefaultMessageCodesResolverDefaultBindingErrorProcessor以了解 Spring 的错误代码解析是如何工作的。

于 2013-09-30T11:00:10.133 回答
-1

你用过错误标签吗?您可以在验证注释中使用消息属性。像这儿 :

@NotEmpty(message = "serverIP 不能为空") private String serverIP;

于 2013-10-01T06:43:23.330 回答