如何在 OSGi 包中使用 Spring bean?

发布于 2024-12-14 01:17:21 字数 332 浏览 3 评论 0原文

我有一个应用程序,我必须使用 Spring 根据 OSGi 包内的某些业务条件加载 bean。该 bean 不用于导出,而是用于我的包中的计算。基本上我有一个实际的服务组件,它是导出的,并且它必须在内部使用这个 Spring bean。但是......

  1. 当我使用 Spring DM 时,扩展程序在单独的线程中加载应用程序上下文。如何访问我的包中的上下文文件?
  2. 如何确保扩展线程完成加载应用程序上下文,以便我可以在我的包中使用它?
  3. 我不想像 Spring DM 那样将应用程序上下文导出为服务,因为它仅在我的包中用于内部目的。

有什么办法可以做到这一点吗?

I have an application where I have to use Spring to load a bean based on some business conditions inside an OSGi bundle. This bean is not meant for export and is used for calculation inisde my bundle. Basically I have an actual service component, which is exported, and it has to use this Spring bean internally. But...

  1. When I use Spring DM the extender loads the application context in a seperate thread. How to access the context file inside my bundle?
  2. How to make sure extender thread finshes loading application context so that i can use it in my bundle?
  3. I don't want to export the application context as services as Spring DM does, as it's only used inside my bundle for internal purposes.

Is there any way to do this?

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

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

发布评论

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

评论(1

刘备忘录 2024-12-21 01:17:21

您不需要 Spring DM 来完成您想要完成的任务。

听起来您想要做的实际上是提供对包内上下文的访问,并让一些类通过 ctx.getBean() 进行查找。如果是这种情况,只需在包中手动创建上下文,就像您不在 OSGi 中一样,然后进行调用。根本不涉及 Spring DM。

这里的一个问题是您必须扩展 ClassPathXmlApplicationContext 来提供捆绑类加载器,否则它将使用线程上下文类加载器。

ApplicationContext ctx = new ClassPathXmlApplicationContext(myCtxPath)
{
    protected void initBeanDefinitionReader(XmlBeanDefinitionReader reader)
    {
        super.initBeanDefinitionReader(reader);
        reader.setValidationMode(XmlBeanDefinitionReader.VALIDATION_NONE);
        reader.setBeanClassLoader(getClassLoader());
    }
}

You don't need Spring DM for what you are trying to accomplish.

It sounds like what you want to do is actually provide access to your context inside of your bundle and have some class do lookups via ctx.getBean(). If this is the case, just create the context in your bundle manually like you would if you were not in OSGi and make the calls. No Spring DM involved at all.

The one issue here is that you have to extend ClassPathXmlApplicationContext to provide the bundles classloader, as it will use the thread context classloader otherwise.

ApplicationContext ctx = new ClassPathXmlApplicationContext(myCtxPath)
{
    protected void initBeanDefinitionReader(XmlBeanDefinitionReader reader)
    {
        super.initBeanDefinitionReader(reader);
        reader.setValidationMode(XmlBeanDefinitionReader.VALIDATION_NONE);
        reader.setBeanClassLoader(getClassLoader());
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文