我想检测一个库方法来调用我在javassist agent中的一个Class。
让我说我有一个班级:
Class A {
void display() {
System.out.println("Inside A.dipslay()");
}
}
然后当我调用时:
method.insertAfter("packageName.A.display()");
它抛出异常:
Exception in thread "main" java.lang.NoClassDefFoundError: packageName/A
at java.net.HttpURLConnection.setRequestMethod(libraryClass)
at sun.net.www.protocol.http.HttpURLConnection.setRequestMethod(libraryClass)
at com.avekshaa.app.SecurityFilter.sendGet(Class where i call the Library Class)
at com.avekshaa.app.SecurityFilter.main(Class where i call the Library Class)
当我只是通过名字来称呼它时:
method.insertAfter("A.display()");
然后它给了一个没有找到这样的类Exception。