`

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) { 

 }

}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics