使用 AspectJ 模拟接口和方法的注解继承
Emulate annotation inheritance for interfaces and methods with AspectJ
经常有人问 AspectJ 类似这样的问题,所以我想在以后可以轻松 link 的地方回答。
我有这个标记注释:
package de.scrum_master.app;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface Marker {}
现在我注释一个接口 and/or 方法是这样的:
package de.scrum_master.app;
@Marker
public interface MyInterface {
void one();
@Marker void two();
}
这是一个同样实现接口的小驱动程序应用程序:
package de.scrum_master.app;
public class Application implements MyInterface {
@Override
public void one() {}
@Override
public void two() {}
public static void main(String[] args) {
Application application = new Application();
application.one();
application.two();
}
}
现在当我定义这个方面时,我希望它被触发
- 对于带注释的 class 和
的每个构造函数执行
- 每次执行带注释的方法。
package de.scrum_master.aspect;
import de.scrum_master.app.Marker;
public aspect MarkerAnnotationInterceptor {
after() : execution((@Marker *).new(..)) && !within(MarkerAnnotationInterceptor) {
System.out.println(thisJoinPoint);
}
after() : execution(@Marker * *(..)) && !within(MarkerAnnotationInterceptor) {
System.out.println(thisJoinPoint);
}
}
不幸的是,方面没有打印任何内容,就好像 class Application
和方法 two()
没有任何 @Marker
注释一样。为什么 AspectJ 不拦截它们?
这里的问题不是AspectJ而是JVM。在 Java 中,注释
- 接口,
- 方法或
- 其他注释
从未被
继承
- 实施 classes,
- 覆盖方法或
- classes 使用 annotated 注释。
注释继承只适用于从classes到子classes,但前提是superclass中使用的注释类型带有元注释@Inherited
,参见 JDK JavaDoc。
AspectJ 是一种 JVM 语言,因此可以在 JVM 的限制范围内工作。这个问题没有通用的解决方案,但是对于您希望为其模拟注释继承的特定接口或方法,您可以使用这样的解决方法:
package de.scrum_master.aspect;
import de.scrum_master.app.Marker;
import de.scrum_master.app.MyInterface;
/**
* It is a known JVM limitation that annotations are never inherited from interface
* to implementing class or from method to overriding method, see explanation in
* <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Inherited.html">JDK API</a>.
* <p>
* Here is a little AspectJ trick which does it manually.
*
*/
public aspect MarkerAnnotationInheritor {
// Implementing classes should inherit marker annotation
declare @type: MyInterface+ : @Marker;
// Overriding methods 'two' should inherit marker annotation
declare @method : void MyInterface+.two() : @Marker;
}
请注意:有了这个方面,您可以从接口和带注释的方法中删除(文字)注释,因为 AspectJ 的 ITD(类型间定义)机制将它们添加回界面以及所有 implementing/overriding classes/methods.
现在 运行 Application
时的控制台日志显示:
execution(de.scrum_master.app.Application())
execution(void de.scrum_master.app.Application.two())
顺便说一句,您也可以将方面直接嵌入到界面中,以便将所有内容都集中在一个地方。小心地将 MyInterface.java
重命名为 MyInterface.aj
以帮助 AspectJ 编译器识别它必须在这里做一些工作。
package de.scrum_master.app;
public interface MyInterface {
void one();
void two();
// Cannot omit 'static' here due to https://bugs.eclipse.org/bugs/show_bug.cgi?id=571104
public static aspect MarkerAnnotationInheritor {
// Implementing classes should inherit marker annotation
declare @type: MyInterface+ : @Marker;
// Overriding methods 'two' should inherit marker annotation
declare @method : void MyInterface+.two() : @Marker;
}
}
2021-02-11 更新:有人建议对后一种解决方案进行编辑,说嵌套在接口 MyInterface
中的方面 MarkerAnnotationInheritor
是隐含的public static
,因此方面声明中的修饰符可以省略。原则上这是正确的,因为接口的成员(方法,嵌套 classes)默认总是 public 并且非静态内部 class 定义在接口内部也没有意义(没有将其绑定到的实例)。不过,我喜欢在我的示例代码中明确说明,因为并非所有 Java 开发人员都可能知道这些细节。
此外,如果我们省略static
,目前1.9.6 版本的AspectJ 编译器会抛出错误。我刚刚为这个问题创建了 AspectJ issue #571104。
经常有人问 AspectJ 类似这样的问题,所以我想在以后可以轻松 link 的地方回答。
我有这个标记注释:
package de.scrum_master.app;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface Marker {}
现在我注释一个接口 and/or 方法是这样的:
package de.scrum_master.app;
@Marker
public interface MyInterface {
void one();
@Marker void two();
}
这是一个同样实现接口的小驱动程序应用程序:
package de.scrum_master.app;
public class Application implements MyInterface {
@Override
public void one() {}
@Override
public void two() {}
public static void main(String[] args) {
Application application = new Application();
application.one();
application.two();
}
}
现在当我定义这个方面时,我希望它被触发
- 对于带注释的 class 和 的每个构造函数执行
- 每次执行带注释的方法。
package de.scrum_master.aspect;
import de.scrum_master.app.Marker;
public aspect MarkerAnnotationInterceptor {
after() : execution((@Marker *).new(..)) && !within(MarkerAnnotationInterceptor) {
System.out.println(thisJoinPoint);
}
after() : execution(@Marker * *(..)) && !within(MarkerAnnotationInterceptor) {
System.out.println(thisJoinPoint);
}
}
不幸的是,方面没有打印任何内容,就好像 class Application
和方法 two()
没有任何 @Marker
注释一样。为什么 AspectJ 不拦截它们?
这里的问题不是AspectJ而是JVM。在 Java 中,注释
- 接口,
- 方法或
- 其他注释
从未被
继承- 实施 classes,
- 覆盖方法或
- classes 使用 annotated 注释。
注释继承只适用于从classes到子classes,但前提是superclass中使用的注释类型带有元注释@Inherited
,参见 JDK JavaDoc。
AspectJ 是一种 JVM 语言,因此可以在 JVM 的限制范围内工作。这个问题没有通用的解决方案,但是对于您希望为其模拟注释继承的特定接口或方法,您可以使用这样的解决方法:
package de.scrum_master.aspect;
import de.scrum_master.app.Marker;
import de.scrum_master.app.MyInterface;
/**
* It is a known JVM limitation that annotations are never inherited from interface
* to implementing class or from method to overriding method, see explanation in
* <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Inherited.html">JDK API</a>.
* <p>
* Here is a little AspectJ trick which does it manually.
*
*/
public aspect MarkerAnnotationInheritor {
// Implementing classes should inherit marker annotation
declare @type: MyInterface+ : @Marker;
// Overriding methods 'two' should inherit marker annotation
declare @method : void MyInterface+.two() : @Marker;
}
请注意:有了这个方面,您可以从接口和带注释的方法中删除(文字)注释,因为 AspectJ 的 ITD(类型间定义)机制将它们添加回界面以及所有 implementing/overriding classes/methods.
现在 运行 Application
时的控制台日志显示:
execution(de.scrum_master.app.Application())
execution(void de.scrum_master.app.Application.two())
顺便说一句,您也可以将方面直接嵌入到界面中,以便将所有内容都集中在一个地方。小心地将 MyInterface.java
重命名为 MyInterface.aj
以帮助 AspectJ 编译器识别它必须在这里做一些工作。
package de.scrum_master.app;
public interface MyInterface {
void one();
void two();
// Cannot omit 'static' here due to https://bugs.eclipse.org/bugs/show_bug.cgi?id=571104
public static aspect MarkerAnnotationInheritor {
// Implementing classes should inherit marker annotation
declare @type: MyInterface+ : @Marker;
// Overriding methods 'two' should inherit marker annotation
declare @method : void MyInterface+.two() : @Marker;
}
}
2021-02-11 更新:有人建议对后一种解决方案进行编辑,说嵌套在接口 MyInterface
中的方面 MarkerAnnotationInheritor
是隐含的public static
,因此方面声明中的修饰符可以省略。原则上这是正确的,因为接口的成员(方法,嵌套 classes)默认总是 public 并且非静态内部 class 定义在接口内部也没有意义(没有将其绑定到的实例)。不过,我喜欢在我的示例代码中明确说明,因为并非所有 Java 开发人员都可能知道这些细节。
此外,如果我们省略static
,目前1.9.6 版本的AspectJ 编译器会抛出错误。我刚刚为这个问题创建了 AspectJ issue #571104。