接口 SaAnnotationHandlerInterface<T extends Annotation>
- 所有已知实现类:
SaCheckDisableHandler,SaCheckHttpBasicHandler,SaCheckHttpDigestHandler,SaCheckLoginHandler,SaCheckOrHandler,SaCheckPermissionHandler,SaCheckRoleHandler,SaCheckSafeHandler,SaCheckSignHandler,SaIgnoreHandler
public interface SaAnnotationHandlerInterface<T extends Annotation>
所有注解处理器的父接口
- 从以下版本开始:
- 2024/8/2
- 作者:
- click33
-
方法概要
修饰符和类型方法说明default voidcheck(Annotation at, Method method) 所需要执行的校验方法voidcheckMethod(T at, Method method) 所需要执行的校验方法(转换类型后)获取所要处理的注解类型
-
方法详细资料
-
getHandlerAnnotationClass
获取所要处理的注解类型- 返回:
- /
-
check
所需要执行的校验方法- 参数:
at- 注解对象method- 被标注的注解的方法引用
-
checkMethod
所需要执行的校验方法(转换类型后)- 参数:
at- 注解对象method- 被标注的注解的方法引用
-