bindingResult和@ModelAttribute结合使用

@ModelAttribute:

它可以帮你自动绑定表单的值,填充到被注解的属性当中。

如 @ModelAttribute User user,该属性会在ModelMap中,添加以user为key的 User对象,然后绑定的时候会有一些绑定结果,就是BindingResult。

但是BindingResult跟@ModelAttribute的相对位置比较重要,也就说跟方法参数,方法签名有关系。BindingResult必须紧跟@ModelAttribute的后面!

如:
@Controller
public class Payer {

@RequestMapping(…)
public String pay(@ModelAttribute User user,BindingResult result) {

}
}

如 果是类似下面的情况就可能有"java.lang.IllegalStateException:

Errors/BindingResult argument declared without preceding model attribute.

Check your handler method signature!"抛出来,具体可以查看

org.springframework.web.bind.annotation.support.HandlerMethodInvoker

@Controller

public class Payer {

@RequestMapping(…)

public String pay(@ModelAttribute User user,@RequestParam Hello hello,

               BindingResult result) { 

}

}

猜你喜欢

转载自blog.csdn.net/qq_43308851/article/details/85387029