mirror of
https://github.com/hs-web/hsweb-framework.git
synced 2026-06-08 08:54:07 +08:00
修复类注解获取错误
This commit is contained in:
@@ -95,7 +95,7 @@ public class BoostAuthorizationAttributeSourceAdvisor extends StaticMethodMatche
|
||||
if (null != authorize) {
|
||||
if (authorize.ignore()) return false;
|
||||
}
|
||||
authorize = AopUtils.findAnnotation(targetClass, method, Authorize.class);
|
||||
authorize = AopUtils.findAnnotation(targetClass, Authorize.class);
|
||||
if (null != authorize) {
|
||||
if (authorize.ignore()) return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user