我在主机应用程序中使用 Apache Felix 来提供在运行时加载扩展的能力。该机制工作得很好,但是如果我包含某些依赖项,我会在开始的捆绑包方面有一些非常喜怒无常的行为。例如,如果我在 pom.xml 中使用以下内容:
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Bundle-Version>1.0.0</Bundle-Version>
<Bundle-Activator>${pom.groupId}.activator.Activator</Bundle-Activator>
<Include-Resource>{maven-resources}, {maven-dependencies}</Include-Resource>
<Import-Package>*</Import-Package>
<Embed-Dependency>jackson-core</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.osgi.core</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>1.8.2</version>
</dependency>
<dependency>
<groupId>co.ff36</groupId>
<artifactId>halo.core</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
一切正常,捆绑注册并启动。但是,如果我将它包含async-http-client
在捆绑包中,它会注册但不会启动!我已经尝试将依赖项嵌入到包中,即使父级主机应用程序将其公开。如果我查看编译包的内部,jar 已包含在内,但它仍然不会真正启动。
我尝试添加:
<dependency>
<groupId>com.ning</groupId>
<artifactId>async-http-client</artifactId>
<version>1.9.31</version>
</dependency>
并修改:
<Embed-Dependency>jackson-core, async-http-client</Embed-Dependency>
这些选项都不起作用。我在主机应用程序中没有收到任何错误,我只是无法弄清楚为什么某些库会导致此问题,而其他库则不会。