aop.xml 名称和位置?

发布于 2024-09-24 01:37:25 字数 267 浏览 4 评论 0原文

有没有办法用LTW指定aop.xml文件的名称?或定义另一个名称和位置? 我使用了几个软件模块,它们都使用 META-INF/aop.xml 并具有不同的设置。 我将这些模块包含在 Web 应用程序中,然后这一切都取决于它的部署/解压方式,以及使用哪个 aop.xml 文件。 所以我经过长时间的搜索发现并非所有LTW编织toke位置校正都被使用,因为它取决于aop.xml...

基本上我需要使用两个aop.xml文件,有点合并aop.xml文件的两个内容...

如何做到这一点? 埃德

Is there a way to specify the name of the aop.xml file with LTW? or define another name and location?
I have several software modules that I use and that all use META-INF/aop.xml with different settings.
I include these modules in a web application and then it all dependens how it's deployed/unpacked, which aop.xml file is used ..
So I discovered after long time of searching that not all LTW weaving toke place correcting as it depends with aop.xml was used ...

Basically I need to use both aop.xml files, kinda of merging both contents of the aop.xml files...

How to do this?
Ed

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

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

发布评论

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

评论(2

凉世弥音 2024-10-01 01:37:25

使用 AspectJ 时,您可以使用系统属性 org.aspectj.weaver.loadtime.configuration 指向另一个配置文件。例如:

-Dorg.aspectj.weaver.loadtime.configuration=file:META-INF/myaop.xml

When using AspectJ you can use the system property org.aspectj.weaver.loadtime.configuration to point to another config file. For example:

-Dorg.aspectj.weaver.loadtime.configuration=file:META-INF/myaop.xml
我是有多爱你 2024-10-01 01:37:25

使用 aop.xml 在 AspectJ 中加载时间编织的重复项。

此外, AspectJ 文档 说:

当给定的编织中可以看到多个配置文件时
类加载器它们的内容在概念上是合并的。

Duplicate of Load time weaving in AspectJ using aop.xml.

Furthermore, the AspectJ documentation says:

When several configuration files are visible from a given weaving
class loader their contents are conceptually merged.

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