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依赖
常用的校验注解
注解 | 释义 |
---|---|
@null | 必须为null |
@notnull | 不能为null |
@asserttrue | 必须为true |
@assertfalse | 必须为false |
@min | 必须为数字,其值大于或等于指定的最小值 |
@max | 必须为数字,其值小于或等于指定的最大值 |
@decimalmin | 必须为数字,其值大于或等于指定的最小值 |
@decimalmax | 必须为数字,其值小于或等于指定的最大值 |
@size | 集合的长度 |
@digits | 必须为数字,其值必须再可接受的范围内 |
@past | 必须是过去的日期 |
@future | 必须是将来的日期 |
@pattern | 必须符合正则表达式 |
必须是邮箱格式 | |
@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
启动项目进行测试
可以看到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
修改user实体类
@data public class user { @notblank(message = "姓名不能为空") private string name; @notblank(message = "年龄不能为空") private string age; @sex(message = "性别不能为空或有误") private string sex; }
重启项目测试效果
使用aop处理校验异常
maven依赖
这里我们用注解作为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
修改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
修改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数据验证 异常处理内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!