我有一个项目使用两个版本的 bouncyCastle 罐子 bcprov-jdk15 和 bcprov-jdk16。jvm 加载旧版本,但我编写的一个功能需要更新版本才能运行。我试图通过使用自定义类加载器来解决这个类路径地狱。经过一番谷歌搜索并借助一些以前的 Stackoverflow 答案[1] [2]和此博客,我编写了以下Parent Last Class 加载器,以在委托给父类加载器之前从较新的 jar 加载类。
public class ParentLastClassLoader extends ClassLoader {
private String jarFile; //Path to the jar file
private Hashtable classes = new Hashtable(); //used to cache already defined classes
public ParentLastClassLoader(ClassLoader parent, String path)
{
super(parent);
this.jarFile = path;
}
@Override
public Class<?> findClass(String name) throws ClassNotFoundException
{
System.out.println("Trying to find");
throw new ClassNotFoundException();
}
@Override
protected synchronized Class<?> loadClass(String className, boolean resolve) throws ClassNotFoundException
{
System.out.println("Trying to load");
try
{
System.out.println("Loading class in Child : " + className);
byte classByte[];
Class result = null;
//checks in cached classes
result = (Class) classes.get(className);
if (result != null) {
return result;
}
try {
JarFile jar = new JarFile(jarFile);
JarEntry entry = jar.getJarEntry(className + ".class");
InputStream is = jar.getInputStream(entry);
ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
int nextValue = is.read();
while (-1 != nextValue) {
byteStream.write(nextValue);
nextValue = is.read();
}
classByte = byteStream.toByteArray();
result = defineClass(className, classByte, 0, classByte.length, null);
classes.put(className, result);
return result;
} catch (Exception e) {
throw new ClassNotFoundException(className + "Not found", e);
}
}
catch( ClassNotFoundException e ){
System.out.println("Delegating to parent : " + className);
// didn't find it, try the parent
return super.loadClass(className, resolve);
}
}
}
我使用这个类加载器加载了功能中的主类,但是我的自定义类加载器没有加载功能中使用的 BouncyCaslte 类。
ClassLoader loader = new ParentLastClassLoader(Thread.currentThread().getContextClassLoader(), pathToJar);
Class myClass = loader.loadClass("MainClassOfTheFeature");
Method mainMethod = myClass.getMethod("MainMethod");
mainMethod.invoke(myClass.getConstructor().newInstance());
Jvm 仍然使用它从旧版本加载的类。如何让 JVM 在运行该功能时从我的类加载器加载类,并在该功能未运行时使用旧 jar 中已加载的旧类?
编辑: 即使在功能 Main 类的 MainMethod 中将自定义类加载器设置为 Thread 上下文类加载器后,问题仍然存在。
Thread.currentThread().setContextClassLoader(this.getClass().getClassLoader());