java自定义注解验证手机格式的实现示例
1、@valid与@validated的区别
1.1 基本区别
@valid:hibernate validation校验机制
@validated:spring validator校验机制,这个也是最常用的
@validation只是对@valid进行了二次封装,在使用上并没有太大区别,但在分组、注解位置、嵌套验证等功能上有所不同
1.2 作用范围
@validated:用在类型、方法和方法参数上。但不能用于成员属性(field)
@valid:可以用在方法、构造函数、方法参数和成员属性(field)上
1.3 分组校验
@validated:提供分组功能,可以在参数验证时,根据不同的分组采用不同的验证机制,注解中必须提供groups属性,该属性就是做分组的必要参数
@valid:没有分组功能
2、未使用分组校验的示例
注解:
/** * 手机号验证正则 */ @target({elementtype.field,elementtype.method}) @retention(retentionpolicy.runtime) @documented @constraint(validatedby = {phonevalidator.class})// 指定约束处理器,也就是手机号格式验证是哪个类来做校验 public @interface phone { string pattern() default "^(?:(?:\\+|00)86)?1\\d{10}$"; string message() default "手机号格式非法"; class<?>[] groups() default { }; // groups用来指定分组,可以让校验采取不同的机制,当前默认未指定任何分组机制,默认每次都要进行校验 class<? extends payload>[] payload() default { }; // 默认分组 interface default{ } // 分组a interface a{ } }
格式校验处理器:
/** * 校验处理器:做手机号码格式验证的核心类 */ public class phonevalidator implements constraintvalidator<phone, string> { // 注解对象 private phone phone; // 初始化【phone】对象 @override public void initialize(phone constraintannotation) { phone = constraintannotation; } @override public boolean isvalid(string value, constraintvalidatorcontext context) { // 获取【phone】对象的手机格式验证表达式 string pattern = phone.pattern(); pattern compile = pattern.compile(pattern); matcher matcher = compile.matcher(value); return matcher.matches(); }
作用类:
@data @equalsandhashcode(callsuper = false) @accessors(chain = true) public class person implements serializable { @phone private string phone; }
注意:只有在spring或者springboot项目中才能使用,直接调用方法不会有任何效果,使用注解进行对象的属性格式校验时,必须配合@validated一起使用(不一起使用,格式校验注解将会无效),正确操作如下:
@restcontroller @requestmapping("/admin/") public class personcontroller { @autowired private personservice personservice; @postmapping("/query") public person query(@requestbody @validated person params) { return jsonresult.success(personservice.querybyphone(params)); } }
以上示例未使用分组功能,因此每次都会校验。
3、分组校验的示例
使用分组校验示示例时,先要看看@validated注解,因为分组校验就是配合该注解一起使用的,通过阅读注释就能理解到value属性就是用来指定分组的:
@target({elementtype.type, elementtype.method, elementtype.parameter}) @retention(retentionpolicy.runtime) @documented public @interface validated { /** * specify one or more validation groups to apply to the validation step * kicked off by this annotation. * <p>jsr-303 defines validation groups as custom annotations which an application declares * for the sole purpose of using them as type-safe group arguments, as implemented in * {@link org.springframework.validation.beanvalidation.springvalidatoradapter}. * <p>other {@link org.springframework.validation.smartvalidator} implementations may * support class arguments in other ways as well. */ class<?>[] value() default {}; }
因此我们需要改动的位置有两处:
- 首先是注解的作用类,注解上指定groups属性
- 其次是controller中的请求的形参:在请求中形参的@validated指定value值,也就是指定校验生效的分组,如果请求中的分组类型【@validated的value值】和作用类中注解所指定的分组【@phone中的groups属性的值】一致时,才会进行校验,否则不会执行校验
作用类:
@data @equalsandhashcode(callsuper = false) @accessors(chain = true) public class person implements serializable { // 指定groups属性 @phone(groups = {phone.a.class}) private string phone; }
controller层:
@restcontroller @requestmapping("/admin/") public class personcontroller { @autowired private personservice personservice; @postmapping("/query") public person query(@requestbody @validated(phone.a.class) person params) { return jsonresult.success(personservice.querybyphone(params)); } }
此时请求中的校验分组phone.a.class和作用类中的校验分组phone.a.class一致,所以校验会被执行
到此这篇关于java自定义注解验证手机格式的实现示例的文章就介绍到这了,更多相关java自定义注解验证手机格式内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: asp CutStrX字符串截取函数(过滤全部HTML标记)
下一篇: 超长待机一白天