微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

AspectJ:切入点中的参数

我正在使用AspectJ来建议所有具有所选类参数的公共方法.我尝试了以下方法
pointcut permissionCheckMethods(Session sess) : 
    (execution(public * *(..,Session)) && args(*,sess));

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

public void delete(Object item,Session currentSession);

但它不适用于以下方法

public List listAll(Session currentSession);

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

解决方法

哦,好吧……我用这个讨厌的伎俩解决了这个问题.还在等待有人出现“官方”切入点定义.
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);
}

原文地址:https://www.jb51.cc/java/127512.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐