我有孩子优先的 UrlClassLoader 来动态加载 jar 文件。然后我进行反射以调用加载的 jar 文件中的方法。完成后,我更喜欢卸载类加载器。然后我尝试做一些压力测试代码以确保我的代码运行顺利。基本上,我尝试做的是在循环语句中加载和卸载 jar。这是我的代码:
for (int i = 0; i < 1000; i++) {
//Just to show the progress
System.out.println("LOAD NUMBER : " + i);
ChildFirstURLClassLoader classLoader = null;
try {
File file = new File("C:\\library.jar");
String classToLoad = "com.test.MyClass";
URL jarUrl = new URL("file:" + file.getAbsolutePath());
classLoader = new ChildFirstURLClassLoader(new URL[] {jarUrl}, null);
Class<?> loadedClass = classLoader.loadClass(classToLoad);
Method method = loadedClass.getDeclaredMethod("execute",
new Class[] {});
ClassLoader currCl= Thread.currentThread().getContextClassLoader();
Thread.currentThread().setContextClassLoader(classLoader);
method.invoke(null);
Thread.currentThread().setContextClassLoader(currCl);
method = null;
loadedClass = null;
} finally {
if (classLoader != null) {
classLoader.close();
classLoader = null;
}
}
}
当我在 JDK1.6 下运行此代码时,无需classLoader.close();
声明,该代码运行完美。但是当我转入JDK1.7时,有时会java.lang.OutOfMemoryError: PermGen space
出错。不幸的是,它以不一致的方式发生。