当前位置: 代码迷 >> java >> Apache Felix OSGI安装依赖项
  详细解决方案

Apache Felix OSGI安装依赖项

热度:115   发布时间:2023-07-26 14:35:18.0

我已经将maven-bundle-plugin恢复为使用默认值。 这是我当前的pom:

<?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.felix.test</groupId>
    <artifactId>com.felix.test</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>bundle</packaging>

    <dependencies>
        <dependency>
            <groupId>org.apache.felix</groupId>
            <artifactId>org.osgi.core</artifactId>
            <version>1.0.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</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>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient-osgi</artifactId>
            <version>4.5</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>net.sf.ehcache</groupId>
            <artifactId>ehcache</artifactId>
            <version>2.10.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.4</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>2.8</version>
                <dependencies>
                    <dependency>
                        <groupId>org.apache.felix</groupId>
                        <artifactId>maven-bundle-plugin</artifactId>
                        <version>2.5.4</version>
                        <type>maven-plugin</type>
                    </dependency>
                </dependencies>
            </plugin>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>2.5.4</version>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

一切都捆绑并安装确定。 当我尝试启动捆绑软件时,被告知我缺少安装的net.sf.ehcache 然后我丢失了我安装的slf4j.api 然后我想念slf4j.impl ,我尝试从安装几乎所有slf4j.impl可能性,但大多数( slf4j-simple-1.7.12.jarslf4j-log4j12-1.7.12.jar )报告:

org.osgi.framework.BundleException:片段捆绑包无法启动。

这是我目前来自GoGo的错误:

org.osgi.framework.BundleException:无法解析com.felix.test [16](R 16.0):缺少要求[com.felix.test [16](R 16.0)] osgi.wiring.package; (&(osgi.wiring.package = net.sf.ehcache)(version> = 2.10.0)(!(version> = 3.0.0)))[原因:无法解析net.sf.ehcache [17] (R 17.0):缺少要求[net.sf.ehcache [17](R 17.0)] osgi.wiring.package; (&(osgi.wiring.package = org.slf4j)(version> = 1.7.0)(!(version> = 2.0.0)))[原因:无法解析slf4j.api [23](R 23.0) :缺少要求[slf4j.api [23](R 23.0)] osgi.wiring.package; (&(osgi.wiring.package = org.slf4j.impl)(版本> = 1.6.0))]]未解决的要求:[[com.felix.test [16](R 16.0)] osgi.wiring.package; (&(osgi.wiring.package = net.sf.ehcache)(版本> = 2.10.0)(!(版本> = 3.0.0))))]

希望我越来越近...

谢谢!

您有两个错误要解决。 第一个是“片段束无法启动”。 错误消息会告诉您所有您需要了解的内容。 slf4j实现捆绑包是片段,您无法启动片段。 所以就不要启动它们!

您尚未指定如何运行OSGi框架,但必须在某处必须有一些代码可以迭代所有已安装的包并在每个包上调用start()方法。 您需要修改代码以不对作为片段的捆绑软件调用start() 您可以按以下步骤判断是否捆绑包是片段:

(bundle.adapt(BundleRevision.class).getTypes() | BundleRevision.TYPE_FRAGMENT) > 0;

要么:

bundle.getHeaders().get(Constants.FRAGMENT_HOST) != null;

第二个错误说名为com.felix.test的捆绑com.felix.test对包net.sf.ehcache有依赖性。 我从未听说过com.felix.test ...这是您正在构建的捆绑软件吗? 您实际上在代码中使用了Ehcache吗? 如果是这样,显然您需要安装Ehcache捆绑包。 如果您确实安装了Ehcache,则它可能是错误的版本。 您的捆绑软件要求的版本为2.10.0,但不包括3.0.0。

  相关解决方案