OSGI包已激活,但在使用DS和Apache Karaf

时间:2017-06-27 23:25:29

标签: java apache maven osgi apache-karaf

我正在开发一个Hello World应用程序。我的应用程序是使用Maven(3.5.0)构建的,使用Apache Felix注释,并在Apache Karaf(4.1.1)中运行。我的应用程序由一个名为App的单个组件组成,应立即启动。捆绑包成功构建。我可以从我的mvn存储库成功安装到Karaf。 Karaf将该捆绑显示为“活动”。问题是我的组件(App)的构造函数和activate方法永远不会被调用。我需要第二眼来帮助我弄清楚为什么会这样。我的pom.xml中缺少什么?

为了完整起见,我在项目中创建了一个实现BundleActivator的Activator类。然后我指示Maven将我的Bundle-Activator设置为这个新类。现在,当我在Karaf中安装我的软件包时,我可以看到我的Activator的日志输出。 start方法正在被击中。所以我知道我的包真的开始了。我只是不明白为什么我的App组件永远不会被创建和激活。

以下是相关文件。

App.java

package myCompany;

import org.apache.felix.scr.annotations.Activate;
import org.apache.felix.scr.annotations.Component;

@Component(immediate=true)
public class App 
{
    public App()
    {
        System.out.println( "App constructed" );
    }

    @Activate
    public void activate()
    {
        System.out.println( "App activated" );
    }
}

Activator.java

package myCompany;

import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;

public class Activator  implements BundleActivator{

    public void start(BundleContext context) throws Exception {
        System.out.println("Activator started");
    }

    public void stop(BundleContext context) throws Exception {
        System.out.println("Activator stopped");
    }
}

的pom.xml

<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>myCompany</groupId>
    <artifactId>myProject</artifactId>
    <packaging>bundle</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>myProject</name>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.core</artifactId>
            <version>6.0.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.felix</groupId>
            <artifactId>org.apache.felix.scr.annotations</artifactId>
            <version>1.9.6</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-scr-plugin</artifactId>
                <version>1.24.0</version>
                <executions>
                    <execution>
                        <id>generate-scr-scrdescriptor</id>
                        <goals>
                            <goal>scr</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <extensions>true</extensions>
                <version>3.3.0</version>
                <configuration>
                    <instructions>
                        <_dsannotations>*</_dsannotations>
                        <_metatypeannotations>*</_metatypeannotations>
                        <Bundle-Activator>myCompany.Activator</Bundle-Activator>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
</project>

2 个答案:

答案 0 :(得分:2)

Karaf不包括对开箱即用的声明性服务的支持。您需要安装scr功能才能激活DS支持:

feature:install scr

答案 1 :(得分:1)

您正在使用org.apache.felix.scr.annotations包中的过时注释,这些注释无法被bnd识别或处理 - 它们需要额外的Maven插件才能工作。

最好迁移代码以使用org.osgi.service.component.annotations包中的OSGi标准注释。参见OSGi Compendium Release 6规范,第112.8节。