我有一个“核心”应用程序,它是处理任务的适配器。每个任务都由内核在适配器负载中实现,以处理任务。

我的问题是,是否可能在每个适配器中使用不同的类路径来解决适配器之间的主要类/jar冲突。

问候,

最佳答案

的确:

URLClassLoader cl = new URLClassLoader(urls);
Thread thread = new MyThread();
thread.setContextClassLoader(cl);
thread.start();

关于java - 可能每个子线程有两个具有不同类路径的子线程吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3522332/

10-13 09:53