2

当我尝试在课堂上进行“绑定”时,它会引发异常,但是如何在表单上显示错误?

控制器:

@InitBinder
public final void binder(WebDataBinder binder) {        
    binder.registerCustomEditor(Telefone.class, new PropertyEditorSupport(){

        @Override
        public void setAsText(String value){
            if(null != value){
                try{
                    setValue(Telefone.fromString(value));
                } catch (IllegalArgumentException e) {
                    // what to do here ??
                }
            }
        }

    });

电话

public static Telefone fromString(String s) {
    checkNotNull(s);
    String digits = s.replaceAll("\\D", "");
    checkArgument(digits.matches("1\\d{2}|1\\d{4}|0300\\d{8}|0800\\d{7,8}|\\d{8,13}"));
    return new Telefone(digits);
}

chekArgument 来自 Google Preconditions

当电话无效时,会抛出 IllegalArgumentException .. 但是如何将其放入 BindingResult

4

1 回答 1

6

我假设您使用的是 Java 5,因此您不能使用 @Valid(没有 JSR303)。如果是这种情况,那么唯一的选择就是使用 BindingResult。

这是您可以执行的操作:

@Controller
public class MyController {

    @RequestMapping(method = RequestMethod.POST, value = "myPage.html")
    public void myHandler(MyForm myForm, BindingResult result, Model model) {
        result.reject("field1", "error message 1");
    }
}

我的jsp:

<form:form commandName="myForm" method="post">
<label>Field 1 : </label>
<form:input path="field1" />
<form:errors path="field1" />

<input type="submit" value="Post" />
</form:form>

要将错误与特定表单相关联,您可以使用:

result.rejectValue("field1", "messageCode", "Default error message");

此外,BindingResult.reject() 将错误消息与整个表单相关联。所以选择哪一个适合你。希望有帮助!

于 2013-01-16T17:01:09.943 回答