是否可以有 2 个子线程,每个子线程具有不同的类路径?

发布于 2024-09-15 11:02:31 字数 122 浏览 4 评论 0原文

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

我的问题是,是否可以在每个适配器中使用不同的类路径来防止适配器之间的类/jar 冲突。

问候,

I have a "core" application that is adapter to process task. Each task is implemented in an adapter load by the core to process the task.

My question is, is it possible to have different classpath in each adapter to precent class/jar conflict between adapters.

Regards,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

习惯成性 2024-09-22 11:02:31

的确:

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

Indeed:

URLClassLoader cl = new URLClassLoader(urls);
Thread thread = new MyThread();
thread.setContextClassLoader(cl);
thread.start();
漫雪独思 2024-09-22 11:02:31

使用 Thread.currentThread().setContextClassloader() 并使用所需的类路径创建一个新的 URLClassLoader 。

Use Thread.currentThread().setContextClassloader() and make a new URLClassLoader with the desired classpath.

笑梦风尘 2024-09-22 11:02:31

是的,你可以。使用Thread的setContextClassLoader方法。

检查以下链接(有点旧但有用)以更好地理解它:

http://www.javaworld.com/javaworld/javaqa/2003-06/01-qa-0606-load.html

Yes you can. using Thread's setContextClassLoader method.

check following link(little old but useful) for understanding it better:

http://www.javaworld.com/javaworld/javaqa/2003-06/01-qa-0606-load.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文