All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.lingkang.finalvalidated.constraints.AssertFalse Maven / Gradle / Ivy

Go to download

final-validator 是一个JavaBean元数据校验模型和方法验证,能够自定义注解来扩展校验范围,符合国内开发习惯的参数校验java库

The newest version!
package top.lingkang.finalvalidated.constraints;

import java.lang.annotation.*;

/**
 * @author lingkang 
* created by 2024/1/28
* 验证注解的元素值是否是 false ,当值为 false 时将通过校验
* 默认返回 {字段名称} 必须为false */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface AssertFalse { /** * 校验失败时返回的消息,返回例示 message */ String message() default ""; /** * 校验失败时返回的消息,优先级比 message 高,返回例示 {tag} 必须为false */ String tag() default ""; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy