欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Spring Boot 数据校验@Valid+统一异常处理的实现

程序员文章站 2024-02-24 20:51:22
1.先在你需要校验的实体类上面加上所需要的注解 为了测试,我自己就简单写了。@notnull 和 @notblank 不能为空 @entity @ta...

1.先在你需要校验的实体类上面加上所需要的注解

为了测试,我自己就简单写了。@notnull 和 @notblank 不能为空

 @entity
 @table(name = "user")
 @data
 public class user implements serializable {

 @id
 @notnull(message = "id不能为空")
 @generatedvalue(strategy = generationtype.identity)
 private integer id;

 @nonnull
 @notblank(message = "姓名不能为空")
 @column(name = "name")
 private string name;

 public user() {
 }

 public user(integer id,string name) {
  this.id=id;
  this.name = name;
 }


}

下面是我从别的博客收集的所有参数校验注解的使用规则方法

空检查

@null 验证对象是否为null

@notnull 验证对象是否不为null, 无法查检长度为0的字符串

@notblank 检查约束字符串是不是null还有被trim的长度是否大于0,只对字符串,且会去掉前后空格.

@notempty 检查约束元素是否为null或者是empty.

booelan检查

@asserttrue 验证 boolean 对象是否为 true

@assertfalse 验证 boolean 对象是否为 false

长度检查

@size(min=, max=) 验证对象(array,collection,map,string)长度是否在给定的范围之内

@length(min=, max=) validates that the annotated string is between min and max included.

日期检查

@past 验证 date 和 calendar 对象是否在当前时间之前

@future 验证 date 和 calendar 对象是否在当前时间之后

@pattern 验证 string 对象是否符合正则表达式的规则

数值检查

建议使用在stirng,integer类型,不建议使用在int类型上,因为表单值为“”时无法转换为int,但可以转换为stirng为"",integer为null

@min 验证 number 和 string 对象是否大等于指定的值

@max 验证 number 和 string 对象是否小等于指定的值

@decimalmax 被标注的值必须不大于约束中指定的最大值. 这个约束的参数是一个通过bigdecimal定义的最大值的字符串表示.小数存在精度

@decimalmin 被标注的值必须不小于约束中指定的最小值. 这个约束的参数是一个通过bigdecimal定义的最小值的字符串表示.小数存在精度

@digits 验证 number 和 string 的构成是否合法

@digits(integer=,fraction=) 验证字符串是否是符合指定格式的数字,interger指定整数精度,fraction指定小数精度。 @range(min=, max=) checks whether the annotated value lies between (inclusive) the specified minimum and maximum. @range(min=10000,max=50000,message=“range.bean.wage”) private bigdecimal wage;

@valid 递归的对关联对象进行校验, 如果关联对象是个集合或者数组,那么对其中的元素进行递归校验,如果是一个map,则对其中的值部分进行校验.(是否进行递归验证)

@creditcardnumber信用卡验证

@email 验证是否是邮件地址,如果为null,不进行验证,算通过验证。

@scriptassert(lang= ,script=, alias=)

@url(protocol=,host=, port=,regexp=, flags=)

2.在controller层加入@valid注解

serviceresult是我自己创建的异常返回类

添加用户信息的方法

 @postmapping("/saveuser")
 public serviceresult addusers(@valid @requestbody user user){
   return serviceresult.success(userrepository.save(user));
 }

3.创建统一处理异常的类

@restcontrolleradvice
@exceptionhandler(写你想要拦截的异常类型)

这两个注解必须要

第一个方法是校验异常的统一处理

第二个是防止参数类型不一致的处理

当然你也可以在里面处理其他异常。

@restcontrolleradvice
public class badrequestexceptionhandler {


 private static final logger logger = loggerfactory.getlogger(badrequestexceptionhandler.class);

 /**
  * 校验错误拦截处理
  *
  * @param exception 错误信息集合
  * @return 错误信息
  */
 @exceptionhandler(methodargumentnotvalidexception.class)
 public serviceresult validationbodyexception(methodargumentnotvalidexception exception){

  bindingresult result = exception.getbindingresult();
  if (result.haserrors()) {

   list<objecterror> errors = result.getallerrors();

   errors.foreach(p ->{

    fielderror fielderror = (fielderror) p;
    logger.error("data check failure : object{"+fielderror.getobjectname()+"},field{"+fielderror.getfield()+
      "},errormessage{"+fielderror.getdefaultmessage()+"}");

   });

  }
  return serviceresult.error("请填写正确信息");
 }

 /**
  * 参数类型转换错误
  *
  * @param exception 错误
  * @return 错误信息
  */
 @exceptionhandler(httpmessageconversionexception.class)
 public serviceresult parametertypeexception(httpmessageconversionexception exception){

  logger.error(exception.getcause().getlocalizedmessage());
  return serviceresult.error("类型转换错误");

 }

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。