是否可以命名 AspectJ 声明的警告?
我使用declare error
和declare 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 @SuppressAjWarnings 注释与警告声明一起使用,如下所示。
You may use @SuppressAjWarnings annotation with a warning declaration as exemplified below.