注释类型 Username
-
@Documented @Retention(RUNTIME) @Target({METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER,TYPE_USE}) @Constraint(validatedBy=UsernameValidator.class) @Repeatable(List.class) public @interface Username
验证是否符合用户名规则- 长度必须大于等于5
- 不能包含@符号,避免是邮箱
- 不能是手机号
- 从以下版本开始:
- 2019年5月8日
- 作者:
- ylyue