自定义注解
Posted wuhao-0206
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义注解相关的知识,希望对你有一定的参考价值。
自定义注解基于元注解来定义自己所需要的注解
@Documented
@Target(FIELD) @Retention(RUNTIME) public @interface IdcardValidate { String message() default "身份证号不正确"; Class<?>[] groups() default {}; Class<? extends Payload>[] payload() default {}; }
以上是关于自定义注解的主要内容,如果未能解决你的问题,请参考以下文章