Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试了解 karaf 线程模型。 根据我在 OSGI 中的理解,如果捆绑启动线程,它也负责关闭它们。karaf 也是这样吗?还有其他管理karaf线程的解决方案吗?
取自额外的评论。 不,OSGi 框架不会管理您的线程。如果你从你的包中产生线程,你应该照顾它。例如,在您的 Activator 的停止方法中,您可以停止您使用的线程池。
OSGi 中的线程的工作方式与普通 Java 中的一样。因此,例如,您可以使用 Executors。