Merge branch '6.3.x'
This commit is contained in:
commit
4da13f6091
|
@ -159,6 +159,7 @@ public final class AuthorizationAdvisorProxyFactory
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public Object proxy(Object target) {
|
public Object proxy(Object target) {
|
||||||
|
AnnotationAwareOrderComparator.sort(this.advisors);
|
||||||
if (target == null) {
|
if (target == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -185,7 +186,6 @@ public final class AuthorizationAdvisorProxyFactory
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public void setAdvisors(AuthorizationAdvisor... advisors) {
|
public void setAdvisors(AuthorizationAdvisor... advisors) {
|
||||||
this.advisors = new ArrayList<>(List.of(advisors));
|
this.advisors = new ArrayList<>(List.of(advisors));
|
||||||
AnnotationAwareOrderComparator.sort(this.advisors);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -199,7 +199,6 @@ public final class AuthorizationAdvisorProxyFactory
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public void setAdvisors(Collection<AuthorizationAdvisor> advisors) {
|
public void setAdvisors(Collection<AuthorizationAdvisor> advisors) {
|
||||||
this.advisors = new ArrayList<>(advisors);
|
this.advisors = new ArrayList<>(advisors);
|
||||||
AnnotationAwareOrderComparator.sort(this.advisors);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue