我正在尝试在运行时加载类,并在此时将它们与一些 AspectJ 方面结合起来。我启用了加载时编织,当我更常规地使用它时它可以工作。
我的@Aspect 课程中有以下内容:
@Before("call(* mypackage.MyInterface.*())")
public void myInterfaceExecuteCall(JoinPoint thisJoinPoint,
JoinPoint.StaticPart thisJoinPointStaticPart,
JoinPoint.EnclosingStaticPart thisEnclosingJoinPointStaticPart) {
System.out.println(thisJoinPoint.getSignature().getDeclaringType());
System.out.println(thisJoinPoint.getSignature().getName());
}
然后我正在扫描罐子并找到实现的类MyInterface
:
URLClassLoader classLoader = new URLClassLoader(new URL[] { urlOfJar },
ClassLoader.getSystemClassLoader());
WeavingURLClassLoader weaver = new WeavingURLClassLoader(
classLoader);
HashSet<Class<?>> executableClasses = new HashSet<Class<?>>();
for (String name : classNamesInJar) {
try {
Class<?> myImplementation = weaver.loadClass(name);
if (MyInterface.class.isAssignableFrom(myImplementation)) {
executableClasses.add(myImplementation);
}
} catch (Exception e) {
e.printStackTrace();
} catch (NoClassDefFoundError e) {
e.printStackTrace();
}
}
...然后我在某个时刻在加载的类中执行特定方法:
try {
Method execute = myImplementation.getMethod("execute");
execute.invoke(myImplementation.newInstance());
} catch (Exception e) {
e.printStackTrace();
}
但是,我上面给你的@Before 方法在我调用时永远不会执行execute.invoke(...)
(尽管该execute
方法本身显然已执行,因为我看到了它的输出)。
有人知道我做错了什么吗?在myInterfaceExecuteCall
调用加载的类的方法之前调用 get 的方法是什么?