在 OSGI 中处理第三方依赖

Handling 3rd party dependencies in OSGI

我正在尝试学习 OSGI,并认为我会使用 Spark Servlet 构建一个简单的休息应用程序。

https://mvnrepository.com/artifact/com.sparkjava/spark-core/1.0

在我的 Maven 构建插件中,我嵌入了 Spark-Core。但是,在我构建并 运行 捆绑包后,它告诉我存在接线包问题。所以我添加了包导入,冲洗并重复。我会得到一个不同的接线包问题,所以我添加依赖项等。

一个接一个地添加软件包,这似乎是一个冗长乏味的过程。正确的做法是什么?

POM

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>osgi-demo</artifactId>
        <groupId>com.osgi-hacking</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <packaging>bundle</packaging>

    <artifactId>osgiclient</artifactId>

    <dependencies>
        <dependency>
            <groupId>com.sparkjava</groupId>
            <artifactId>spark-core</artifactId>
            <version>2.7.2</version>
        </dependency>
        <dependency>
            <groupId>org.eclipse.jetty</groupId>
            <artifactId>jetty-server</artifactId>
            <version>9.4.8.v20171121</version>
        </dependency>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.core</artifactId>
            <version>6.0.0</version>
        </dependency>
        <dependency>
            <groupId>org.eclipse.jetty</groupId>
            <artifactId>jetty-webapp</artifactId>
            <version>9.4.8.v20171121</version>
        </dependency>
        <dependency>
            <groupId>org.eclipse.jetty.websocket</groupId>
            <artifactId>websocket-server</artifactId>
            <version>9.4.8.v20171121</version>
        </dependency>
        <dependency>
            <groupId>org.eclipse.jetty.websocket</groupId>
            <artifactId>websocket-servlet</artifactId>
            <version>9.4.8.v20171121</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.3</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>
                            ${project.groupId}.${project.artifactId}
                        </Bundle-SymbolicName>
                        <Bundle-Name>
                            CUSTOM :: GREETER CLIENT :: BUNDLE
                        </Bundle-Name>
                        <Bundle-Version>
                            9.4.8.v20171121
                        </Bundle-Version>
                        <Bundle-Activator>
                            com.osgi.client.Activator
                        </Bundle-Activator>
                        <Embed-Dependency>
                            spark-core
                        </Embed-Dependency>
                        <Import-Package>
                            *
                        </Import-Package>
                    </instructions>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

spark core jar 已经是一个包了。 所以没有必要嵌入它。只需在 OSGi 中安装它及其依赖项(主要是码头)。

为您自己的捆绑包。只需删除所有内部。 maven bundle 插件的默认值将产生你需要的东西。

它将检测您需要的包并为它们编写 Import-Package 语句。当您将 spark-core 作为捆绑包安装时,它应该可以正常工作。