springboot hibernate实现自定义数据验证及异常处理-亚博电竞手机版

目录

  • 前言
  • hibernate实现字段校验
  • 自定义校验注解
  • 使用aop处理校验异常
  • 全局异常类处理异常

前言

在进行 springboot 项目开发中,经常会碰到属性合法性问题,而面对这个问题通常的解决办法就是通过大量的 if 和 else 判断来解决的,例如:

@postmapping("/verify") @responsebody public object verify(@valid user user){ if (stringutils.isempty(user.getname())){ return "姓名不能为空"; } if (stringutils.isempty(user.getage())){ return "姓名不能为空"; } if (!stringutils.isempty(user.getsex())&&user.getsex().equals("男")&&user.getsex().equals("女")){ return "性别有误"; } return user; }

这种代码写法十分麻烦,试想一下如果你有10个、20个字段属性,你也要跟着写十几二十几个 if 和 else 判断?

so,本文讲解一下使用hibernate框架来去验证字段属性,使用相应的注解即可实现字段合法性校验,以及如何自定义注解进行校验,包括出现异常的几种处理方式。

hibernate实现字段校验

maven依赖

o恰卡编程网rg.springframework.boot spring-boot-starter-validation

常用的校验注解

注解释义
@null必须为null
@notnull不能为null
@asserttrue必须为true
@assertfalse必须为false
@min必须为数字,其值大于或等于指定的最小值
@max必须为数字,其值小于或等于指定的最大值
@decimalmin必须为数字,其值大于或等于指定的最小值
@decimalmax必须为数字,其值小于或等于指定的最大值
@size集合的长度
@digits必须为数字,其值必须再可接受的范围内
@past必须是过去的日期
@future必须是将来的日期
@pattern必须符合正则表达式
@email必须是邮箱格式
@length长度范围
@notempty不能为null,长度大于0
@range元素的大小范围
@notblank不能为null,字符串长度大于0(限字符串)

定义user实体类

@data public class user { @notblank(message = "姓名不能为空") private string name; @notblank(message = "年龄不能为空") private string age; }

定义usercontroller

@controller public class usercontroller { @postmapping("/verify") @responsebody public object verify(@valid user user, bindingresult result){ //字段校验有错误 if (result.haserrors()){ //获取错误字段信息 list fielderrors = result.getfielderrors(); if (fielderrors!=null){ //创建一个map用来封装字段错误信息 hashmap map = new hashmap<>(); //遍历错误字段 fielderrors.foreach(x->{ //获取字段名称 string field = x.getfield(); //获取字段错误提示信息 string msg = x.getdefaultmessage(); //存入map map.put(field, msg); }); return map; } } return user; } }

启动项目进行测试

可以看到name和age的错误信息已经封装好传回来了

自定义校验注解

自定义一个校验性别的注解sex

/** * 性别约束 * @target用于指定使用范围,该处限定只能在字段上使用 * @retention(retentionpolicy.runtime)表示注解在运行时可以通过反射获取到 * @constraint(validatedby = xxx.class)指定该注解校验逻辑 */ @target({ elementtype.field}) @retention(retentionpolicy.runtime) @constraint(validatedby = sexconstraintvalidator.class) public @interface sex { string message() default "性别有误"; class[] groups() default { }; class[] payload() default { }; }

创建sexconstraintvalidator校验逻辑类

/** * 性别约束逻辑判断 */ public class sexconstraintvalidator implements constraintvalidator { @override public boolean isvalid(string value, constraintvalidatorcontext context) { return value != null && (value.equals("男") || value.equals("女")); } }

修改user实体类

@data public class user { @notblank(message = "姓名不能为空") private string name; @notblank(message = "年龄不能为空") private string age; @sex(message = "性别不能为空或有误") private string sex; }

重启项目测试效果

使用aop处理校验异常

maven依赖

org.springframework.boot spring-boot-starter-aop

这里我们用注解作为aop的切入点,新建一个注解 bindingresultannotation

@target({elementtype.method}) @retention(retentionpolicy.runtime) @documented public @interface bindingresultannotation { }

定义参数校验切面类

/** * 参数校验切面类 */ @aspect @component public class bindingresultaspect { /** * 校验切入点 */ @pointcut("@annotation(com.hsqyz.hibernate.config.aop.bindingresultannotation)") public void bindingresult() { } /** * 环绕通知 * @param joinpoint * @return * @throws throwable */ @around("bindingresult()") public object doaround(proceedingjoinpoint joinpoint) throws throwable { system.out.println("参数校验切面..."); object[] args = joinpoint.getargs(); for (object arg : args) { if (arg instanceof bindingresult) { bindingresult result = (bindingresult) arg; if (result.haserrors()){ list fielderrors = result.getfielderrors(); if (fielderrors!=null){ hashmap map = new hashmap<>(); fielderrors.foreach(x->{ string field = x.getfield(); string msg = x.getdefaultmessage(); map.put(field, msg); }); return map; } } } } return joinpoint.proceed(); } }

修改usercontroller

注意:这里将新建的切面注解添加到方法上@bindingresultannotation,必须携带bindingresult result在参数后面,否则aop无法获取错误信息,导致aop无法处理异常。

@controller public class usercontroller { @postmapping("/verify") @responsebody @bindingresultannotation public object verify(@valid user user, bindingresult result) { return user; } }

重启项目查看效果

全局异常类处理异常

创建globelexceptionhandler来处理全局异常,使用@exceptionhandle来拦截指定异常,由于参数校验抛出的异常是bindexception,所以我们需要拦截bindexception异常,而bindexception内部封装这错误信息,这样就可以用全局异常处理类来封装字段错误信息返回。

/** * 全局异常处理 */ @controlleradvice public class globelexceptionhandler { /** * 参数验证异常处理 * @param result * @return */ @responsebody @exceptionhandler(bindexception.class) public object bindexceptionhandler(bindingresult result) { system.out.println("参数验证异常处理..."); if (result.haserrors()){ list fielderrors = result.getfielderrors(); if (fielderrors!=null){ hashmap map = new hashmap<>(); fielderrors.foreach(x->{ string field = x.getfield(); string msg = x.getdefaultmessage(); map.put(field, msg); }); return map; } } return result.getallerrors(); } }

修改usercontroller

注意:这个时候我们就需要去掉verify()方法中的bindingresult result参数,因为不去掉的话,出现错误信息不会抛出异常,会被收集起来封装到bindingresult中去,所以要想使用全局异常处理类来处理校验异常,就必须去掉bindingresult参数,让其抛出异常,我们再使用全局异常处理类进行异常处理,封装异常信息并返回。

@controller public class usercontroller { @postmapping("/verify") @responsebody public object verify(@valid user user) { return user; } }

重启项目查看运行效果

到此这篇关于springboot hibernate实现自定义数据验证及异常处理的文章就介绍到这了,更多相关springboot hibernate数据验证 异常处理内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

展开全文
内容来源于互联网和用户投稿,文章中一旦含有亚博电竞手机版的联系方式务必识别真假,本站仅做信息展示不承担任何相关责任,如有侵权或涉及法律问题请联系亚博电竞手机版删除

最新文章

网站地图