使用Spring-Context MANIFEST definitions,我正在尝试component-scan
来搜索Spring注释bean的包。我的Spring XML配置看起来像这样:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">
<!-- Scans the classpath of this application for @Components to deploy as
beans -->
<context:component-scan
base-package="com.some.other.module.one,com.another.module.two" />
<context:annotation-config />
....
</beans>
在MANIFEST中,我使用Spring注释导入包含类的包。但是,当我检查ApplicationContext时,它没有任何带注释的bean。
我相信这种情况正在发生,因为我们正在扫描的类路径是不同的包。这些bundle不直接导入包含Spring注释的类的包。令人困惑的是,为什么Spring没有选择从组件扫描开始的主包的类路径?在进行类路径扫描时,似乎正在使用每个bundle的类路径。有没有办法让类路径扫描使用扫描开始的包的类路径?
修改
正如Danail Nachev所说,当Spring进行类路径扫描时,它只发生在类路径发生的模块中。解决方法是使用:
@Configuration
bean中。@Configuration
bean的XML文件。@Configuration
bean中,使用@Import
导入其他配置文件。Require-Bundle
以确保您导入的配置可用。答案 0 :(得分:7)
OSGi完全是模块化的,因此在捆绑包之间进行明确分离是非常重要的。如果Spring可以在单个ApplicationContext下将它们联合起来,那么它将与通常的Spring应用程序不同,后者在单个类路径中提供所有内容。这样的事情。
正在发生的事情是每个bundle都会收到自己的ApplicationContext。这些ApplicationContexts可以使用OSGi Service Registry交换bean。您需要将bean标记为已导出并将其导入其他ApplicationContexts,否则它们彼此不可见。
这可以解释为什么你不能用单个Spring上下文配置所有东西,并期望从一个bundle开始它会找到所有bean。 Spring上下文仅扫描单个bundle,并且可以选择将bean导入/导出为OSGi服务。
从这里解释:Chapter 8. Packaging and Deploying Spring-based OSGi applications