码迷,mamicode.com
首页 > 其他好文 > 详细

validator 手动验证 表单字段 不基于注解@Valid

时间:2017-04-28 20:20:21      阅读:594      评论:0      收藏:0      [点我收藏+]

标签:validate   return   ltm   result   spring   error   erro   message   dap   

Validator validator = new SpringValidatorAdapter(Validation.buildDefaultValidatorFactory().getValidator());
BindingResult bindingResult = new BindException(appCustomerVo, "appCustomerVo");
validator.validate(appCustomerVo,bindingResult);
if (bindingResult.hasErrors()) {
return new ApiResult().error(Constant.RETURN_CODE_00001, bindingResult.getAllErrors().get(0).getDefaultMessage());
}

validator 手动验证 表单字段 不基于注解@Valid

标签:validate   return   ltm   result   spring   error   erro   message   dap   

原文地址:http://www.cnblogs.com/wangdaijun/p/6782698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!