make XML and Java/Kotlin consistent with AspectJExpressionPointcut
This commit is contained in:
parent
0beda02a14
commit
1d769b5afc
|
@ -1265,8 +1265,8 @@ import static org.springframework.security.authorization.AuthorityAuthorizationM
|
|||
@Bean
|
||||
@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
|
||||
static Advisor protectServicePointcut() {
|
||||
JdkRegexpMethodPointcut pattern = new JdkRegexpMethodPointcut();
|
||||
pattern.setPattern("execution(* com.mycompany.*Service.*(..))");
|
||||
AspectJExpressionPointcut pattern = new AspectJExpressionPointcut();
|
||||
pattern.setExpression("execution(* com.mycompany.*Service.*(..))");
|
||||
return new AuthorizationManagerBeforeMethodInterceptor(pattern, hasRole("USER"));
|
||||
}
|
||||
----
|
||||
|
@ -1281,8 +1281,8 @@ companion object {
|
|||
@Bean
|
||||
@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
|
||||
fun protectServicePointcut(): Advisor {
|
||||
var pattern = JdkRegexpMethodPointcut();
|
||||
pattern.setPattern("execution(* com.mycompany.*Service.*(..))");
|
||||
var pattern = AspectJExpressionPointcut();
|
||||
pattern.setExpression("execution(* com.mycompany.*Service.*(..))");
|
||||
return new AuthorizationManagerBeforeMethodInterceptor(pattern, hasRole("USER"));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue