优化 sa-token-spring-aop 模块注释

This commit is contained in:
click33 2023-05-12 17:50:25 +08:00
parent ffda42ca0c
commit ea017c04e5

View File

@ -15,9 +15,14 @@ import cn.dev33.satoken.strategy.SaStrategy;
import cn.dev33.satoken.util.SaTokenConsts;
/**
* sa-token 基于 Spring Aop 的注解鉴权
* Sa-Token 基于 Spring Aop 的注解鉴权
*
* <p>
* 注意在打开 注解鉴权 AOP 模式与拦截器模式不可同时使用否则会出现在 Controller 层重复鉴权两次的问题
* </p>
*
* @author click33
* @since <= 1.34.0
*/
@Aspect
@Component
@ -31,7 +36,7 @@ public class SaCheckAspect {
}
/**
* 定义AOP签名 (切入所有使用sa-token鉴权注解的方法)
* 定义AOP签名 (切入所有使用 Sa-Token 鉴权注解的方法)
*/
public static final String POINTCUT_SIGN =
"@within(cn.dev33.satoken.annotation.SaCheckLogin) || @annotation(cn.dev33.satoken.annotation.SaCheckLogin) || "