AspectJ:切入点中的参数

Man*_*zzi 6 aspectj

我正在使用AspectJ来建议所有具有所选类参数的公共方法.我尝试了以下方法:

pointcut permissionCheckMethods(Session sess) : 
    (execution(public * *(.., Session)) && args(*, sess));
Run Code Online (Sandbox Code Playgroud)

这对于具有至少2个参数的方法非常有用:

public void delete(Object item, Session currentSession);
Run Code Online (Sandbox Code Playgroud)

但它不适用于以下方法:

public List listAll(Session currentSession);
Run Code Online (Sandbox Code Playgroud)

我怎样才能改变我的切入点来建议两种方法执行?换句话说:我希望".."通配符代表"零个或多个参数",但看起来它意味着"一个或多个"......

Man*_*zzi 8

哦,好吧......我用这个讨厌的伎俩解决了这个问题.还在等待有人出现"官方"切入点定义.

pointcut permissionCheckMethods(EhealthSession eheSess) : 
    (execution(public * *(.., EhealthSession)) && args(*, eheSess))
    && !within(it.___.security.PermissionsCheck);

pointcut permissionCheckMethods2(EhealthSession eheSess) : 
    (execution(public * *(EhealthSession)) && args(eheSess))
    && !within(it.___.security.PermissionsCheck)
    && !within(it.___.app.impl.EhealthApplicationImpl);

before(EhealthSession eheSess) throws AuthorizationException : permissionCheckMethods(eheSess)
{
    Signature sig = thisJoinPointStaticPart.getSignature(); 
    check(eheSess, sig);
}

before(EhealthSession eheSess) throws AuthorizationException : permissionCheckMethods2(eheSess)
{
    Signature sig = thisJoinPointStaticPart.getSignature(); 
    check(eheSess, sig);
}
Run Code Online (Sandbox Code Playgroud)