方法调用始终从切入点表达式返回 null

发布于 2024-10-08 16:01:41 字数 323 浏览 4 评论 0原文

我定义了一个切入点,如下所示:

<aop:pointcut id="getAllDataCut" expression=
   "execution(* com.example.test.getAllData(com.example test.User)) and args(usr)" />

当我调用时

final Object[] methodArgs= methodInvocation.getArguements();

,我总是为空。

请给一些提示。 提前致谢

I defined one pointcut like below:

<aop:pointcut id="getAllDataCut" expression=
   "execution(* com.example.test.getAllData(com.example test.User)) and args(usr)" />

When i call

final Object[] methodArgs= methodInvocation.getArguements();

i am getting always null.

Please give some hints.
Thanks in Advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇俏 2024-10-15 16:01:41

由于您知道发送到该方法的参数,因此可以将它们作为切面方法的参数获取:

public void aspect(JoinPoint joinPoint, com.example.test.User user) {  
  // DO SOME THING WITH user  
}

如果您想为具有不同参数的方法添加切面,您可以从表达式中删除参数

Since you know the arguments sent to the method, you can get them as parameter to your aspect method:

public void aspect(JoinPoint joinPoint, com.example.test.User user) {  
  // DO SOME THING WITH user  
}

if you want to add aspect for methods with different arguments, you can remove the args from the expression

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文