修复类注解获取错误

This commit is contained in:
zhouhao
2017-06-19 14:37:35 +08:00
parent 574d836c37
commit f46c3726e7

View File

@@ -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;
}