top.lingkang.finalvalidated.constraints.Null Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of final-validator Show documentation
Show all versions of final-validator Show documentation
final-validator 是一个JavaBean元数据校验模型和方法验证,能够自定义注解来扩展校验范围,符合国内开发习惯的参数校验java库
The newest version!
package top.lingkang.finalvalidated.constraints;
import java.lang.annotation.*;
/**
* @author lingkang
* created by 2024/1/28
* 注解的属性必定是空,即 null 值,
* 例如 /login?username=&password=123,中,username、password不为null,phone为null
* 默认返回 {字段名称} 必须为空
* 适用类型:string、Integer、Long、Boolean等包装类
* int、long、boolean等基础类型将不适用,将不能通过检查
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Null {
/**
* 校验失败时返回的消息,返回例示 message
*/
String message() default "";
/**
* 校验失败时返回的消息,优先级比 message 高,返回例示 {tag} 必须为空
*/
String tag() default "";
}