是否可以命名 AspectJ 声明的警告?

发布于 2024-09-30 02:50:46 字数 284 浏览 3 评论 0原文

我使用declare errordeclare warning来强制执行一些策略;但在某些特定情况下我想摆脱警告。
有没有办法命名声明的警告以便我可以使用@SuppressWarning

另外,我看到了一个解决方案,但它并不令我满意:定义一个自定义 @SuppressXxxPolicyWarning 注释并使用它来限制 declare warning 切入点。

I use declare error and declare warning to enforce some policies; but in some specific cases I would like to get rid of the warning.
Is there a way I can name the declared warning so that I can use @SuppressWarning ?

Else I see a solution but it doesn't satisfy me: define a custom @SuppressXxxPolicyWarning annotation and use it to restrict the declare warning pointcut.

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

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

发布评论

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

评论(1

也只是曾经 2024-10-07 02:50:46

您可以将 @SuppressAjWarnings 注释与警告声明一起使用,如下所示。

declare warning : execution(!@SuppressAjWarnings * *.badMethodName(..)) : 
    "Your warning message.";

You may use @SuppressAjWarnings annotation with a warning declaration as exemplified below.

declare warning : execution(!@SuppressAjWarnings * *.badMethodName(..)) : 
    "Your warning message.";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文