gpt4 book ai didi

java - AspectJ - 在运行时使用自定义 ClassLoader 编织

转载 作者:搜寻专家 更新时间:2023-10-31 19:57:15 26 4
gpt4 key购买 nike

我正在尝试在运行时加载类,并在此时将它们与一些 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());
}

然后我扫描 jars 并找到实现了 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();
}

但是,当我调用 execute.invoke(...) 时,我上面给你的 @Before 方法从未执行过(尽管 execute 方法本身显然是已执行,因为我看到了它的输出)。

有人知道我做错了什么吗?在调用加载类的方法之前调用 myInterfaceExecuteCall 的方法是什么?

最佳答案

好吧,我发现了它是什么,它并没有按照我预期的方式工作,但这里有一个解决方法:

只需执行 @Before("execution(* mypackage.MyInterface.*())") 而不是 call。即使该类是手动加载的,并且在运行时由自定义类加载器加载,这仍然有效。这是因为 AspectJ 不关心使用 Method.invoke(...) 完成的调用。我希望其他人可以使用此解决方法。

这是一个指向包含重要信息的文档的链接:

For example, the call pointcut does not pick out reflective calls to a method implemented in java.lang.reflect.Method.invoke(Object, Object[]).

http://www.eclipse.org/aspectj/doc/released/progguide/implementation.html

如果您有不同的解决方案,请随时回答!

关于java - AspectJ - 在运行时使用自定义 ClassLoader 编织,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10733247/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com