Apache Karaf不加载spring应用程序上下文

时间:2015-05-08 12:36:19

标签: spring apache osgi karaf

我正在尝试编写一个将在Apache Karaf中部署的spring应用程序osgi包。我的捆绑包已成功生成,当我在Karaf中安装捆绑包时,它显示捆绑包已成功启动,相应的捆绑包状态为“已解决”。但我不相信该捆绑包已成功启动。

因为仅仅为了测试目的,我的一个Spring bean实现了InitializingBean,而在afterPropertiesSet方法中我只是放了一个sysout。这意味着当加载应用程序上下文时,应该在karaf控制台中打印sysout。

但事实并非如此。 应用程序上下文文件放在src/main/resources/META-INF/spring目录下,并且在清单文件中我添加了Spring-Context标记。但它仍然无法正常工作。

我是OSGI的新手,并且坚持了3天以上。我按照文档和谷歌搜索结果但仍然没有运气。

请在这方面帮助我。我也在这里附上我的小代码库,以便你可以查看它。

我的应用程序上下文

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:p = "http://www.springframework.org/schema/p"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:osgi="http://www.springframework.org/schema/osgi"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans.xsd 
        http://www.springframework.org/schema/osgi
        http://www.springframework.org/schema/osgi/spring-osgi.xsd">
    <bean id="newService" class="com.mycompany.bundle.SpringService"/>
    <bean id="springContext" class="com.mycompany.bundle.SpringContext"/>
    <osgi:service id="simpleServiceOsgi" ref="newService"
        interface="com.mycompany.bundle.ISpringService" />
</beans>

我的pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.shamik</groupId>
    <artifactId>com.shamik.bundle.new</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>bundle</packaging>
    <name>com.shamik.bundle.new Bundle</name>
    <description>com.mycompany.bundle OSGi bundle project.</description>
    <dependencies>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.core</artifactId>
            <version>4.2.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.batch</groupId>
            <artifactId>spring-batch-core</artifactId>
            <version>2.2.0.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.6</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.osgi</groupId>
            <artifactId>spring-osgi-core</artifactId>
            <version>1.2.1</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.osgi</groupId>
            <artifactId>spring-osgi-extender</artifactId>
            <version>1.2.1</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.osgi</groupId>
            <artifactId>spring-osgi-io</artifactId>
            <version>1.2.1</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>2.3.7</version>
                <extensions>true</extensions>
                <configuration>
                <excludeDependencies>*;scope=provided|runtime</excludeDependencies>
                    <unpackBundle>true</unpackBundle>
                    <instructions>
                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                        <Bundle-Version>${project.version}</Bundle-Version>
    <!--                <Bundle-Activator>com.mycompany.bundle.Activator</Bundle-Activator> -->
                        <Export-Package>
                            javax.xml.parsers*,org.xml.sax*,com.mycompany.bundle*;version=${project.version},org.springframework.context*,org.springframework.stereotype*
                        </Export-Package>
                        <Import-Package>
                            com.mycompany.bundle*,javax.xml.parsers*,org.xml.sax*,org.springframework.context*,org.osgi*,org.springframework.stereotype*,!*
                        </Import-Package>
                        <Include-Resource>src/main/resources</Include-Resource>
                        <Embed-Dependency>*;scope=compile|runtime</Embed-Dependency>
                        <Embed-Transitive>true</Embed-Transitive>
                        <Spring-Context>*;publish-context:=false;create-asynchronously:=true</Spring-Context>
                        <DynamicImport-Package>*</DynamicImport-Package>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>       
    </build>
</project>

2 个答案:

答案 0 :(得分:1)

您需要安装karaf的spring-dm功能。它包含扩展器,它扫描bundle的spring上下文并启动它们。如果没有这个,捆绑可能会启动,但不会做任何事情。

答案 1 :(得分:0)

“已解决”并不意味着一切都很好并且已启动。这仅仅意味着卡拉夫“发现了你的东西”。如果所有内容都已成功加载并启动,则状态为“活动”。事实上,你的捆绑是惰性的。

您可能需要检查应用程序上下文的名称xml file 是否为默认名称。我原以为该目录中的任何xml文件都会被读入,但您可能希望首次重命名为“spring.xml”。 (我使用蓝图配置,以及jboss karaf构建,所以我不能说这是否会有所帮助 - 尽管我怀疑没有)

假设不是问题,请打开2个终端,并且:
- 在第一个中,启动karaf客户端并执行log:tail
- 在第二步中,启动karaf客户端并执行restart <number of your bundle>
- 使用第一个终端的输出

更新您的帖子

辅助评论 - 如果您选择采用较新的“蓝图”配置标准(推荐,并且基本上是spring配置的超集),则默认文件名/位置为src/main/resources/OSGI-INF/blueprint/blueprint.xml