文档修复

This commit is contained in:
click33 2024-08-28 21:30:45 +08:00
parent f9113ddce5
commit 7db36d5a97

View File

@ -151,7 +151,7 @@ public class SaTokenConfigure {
@PostConstruct
public void rewriteSaStrategy() {
// 重写Sa-Token的注解处理器增加注解合并功能
SaStrategy.instance.getAnnotation = (element, annotationClass) -> {
SaAnnotationStrategy.instance.getAnnotation = (element, annotationClass) -> {
return AnnotatedElementUtils.getMergedAnnotation(element, annotationClass);
};
}