Spring AOP-动态切入点

发布于 2024-11-05 09:26:46 字数 145 浏览 0 评论 0原文

CONTROLFLOWPOINTCUTS 的目的是什么?它的用途是什么?它可以在哪里使用?

动态切入点有什么优点?

用一个例子解释 CONTROLFLOW POINTCUT,它在 XML 文件中配置(与源分离)

What is de purpose of CONTROLFLOWPOINTCUTS, for what purpose it is intended for, where and all it can be used?

What are the advantages of dynamic pointcuts??

Explain CONTROLFLOW POINTCUT with an example, where it is configured in XML file(decoupled from source)

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

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

发布评论

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

评论(1

埋情葬爱 2024-11-12 09:26:46

这听起来像家庭作业,我不想为你做这些,但是:

网络上的 AspectJ / Spring AOP 资源很糟糕。

尝试一下,如果您可以在某处获取 AspectJ in Action 的纸质副本或数字副本,其中包括 < code>cflow 和 cflobelow 切入点。

否则,这里有一个来自 AspectJ 快速参考的定义:

cflow ( call(void Figure.move()) )

控制流中的任何连接点
每次调用 voidFigure.move()。
这包括通话本身。

cflowbelow ( call(void Figure.move()) ) 

控制流下方的任何连接点
每次调用 void Figure.move() 的次数。
这不包括通话。

This smells like homework, and I don't want to do that for you, but:

AspectJ / Spring AOP resources on the web are miserable.

Try if you can get a hard or digital copy of AspectJ in Action somewhere, it includes explanations of the cflow and cflobelow pointcuts.

Otherwise, here's a definition from the AspectJ Quick Reference:

cflow ( call(void Figure.move()) )

any join point in the control flow of
each call to void Figure.move().
This includes the call itself.

cflowbelow ( call(void Figure.move()) ) 

any join point below the control flow
of each call to void Figure.move().
This does not include the call.

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