是否可以有 2 个子线程,每个子线程具有不同的类路径?
我有一个“核心”应用程序,它是处理任务的适配器。每个任务都是在适配器负载中实现的,由核心来处理该任务。
我的问题是,是否可以在每个适配器中使用不同的类路径来防止适配器之间的类/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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
的确:
Indeed:
使用 Thread.currentThread().setContextClassloader() 并使用所需的类路径创建一个新的 URLClassLoader 。
Use
Thread.currentThread().setContextClassloader()
and make a newURLClassLoader
with the desired classpath.是的,你可以。使用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