我正在尝试构建一个Blueprint bundle在Apache Felix中运行。我试着让它运行起来,但没有成功。蓝图包在Karaf中工作得很好,但在Felix中不行。是否有任何文档或web上的运行示例来解释如何仅使用普通的Felix运行Blueprint包?我想我必须手动将Aries添加到Felix平台,但它似乎不起作用。
更确切地说,我希望一个简单的服务看到它是从Blueprint . XML XML配置文件作为Blueprint bundle加载的。服务可能只有一个虚拟方法,或者甚至只有一个包含println的构造函数。我想在OSGI-INF/blueprint/blueprint.xml中引用这个服务类,这样它就会在Felix加载blueprint包时被加载。花了一些时间尝试解决这个问题后,我找到了解决方案。因此,为了使Aries Blueprint运行,您需要将以下包安装到Felix中(使用v.4.4.1进行测试):
- org.apache.aries。蓝图:org.apache.aries.blueprint: 1.1.0
- 表示。
- org.apache.aries。proxy: org.apache.aries.proxy: 1.0.1
- 表示。felix: org.apache.felix.configadmin: 1.8.0
- SLF4J的一个实现(在这种情况下将是PAX日志):
- org.ops4j.pax。pax-logging-api: 1.4
- org.ops4j.pax。log: pax-logging-service: 1.4(您可以排除log4j: log4j,因为不需要)
这些jar文件将在Felix中启用Aries Blueprint(但仅限于XML配置版本)。如果你想使用注释,你必须添加注释相关的jar文件。
这首诗可以使你的工作轻松些。只要运行它,所有需要在felix中安装的jar就会在你的目标文件夹中。
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.aries</groupId>
<artifactId>blueprint-felix-assembly</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Blueprint Felix Jar Assembly</name>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<pax.logging.version>1.4</pax.logging.version>
<aries.version>1.1.0</aries.version>
<aries.proxy.version>1.0.1</aries.proxy.version>
<felix.config.admin.version>1.8.0</felix.config.admin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.configadmin</artifactId>
<version>${felix.config.admin.version}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.logging</groupId>
<artifactId>pax-logging-api</artifactId>
<version>${pax.logging.version}</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.logging</groupId>
<artifactId>pax-logging-service</artifactId>
<version>${pax.logging.version}</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.aries.blueprint</groupId>
<artifactId>org.apache.aries.blueprint</artifactId>
<version>${aries.version}</version>
</dependency>
<dependency>
<groupId>org.apache.aries</groupId>
<artifactId>org.apache.aries.util</artifactId>
<version>${aries.version}</version>
</dependency>
<dependency>
<groupId>org.apache.aries.proxy</groupId>
<artifactId>org.apache.aries.proxy</artifactId>
<version>${aries.proxy.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<excludeTransitive>true</excludeTransitive>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Aries应该在Apache Felix上运行得很好,它不需要Apache Karaf来运行。事实上,我们在集成测试中使用的是普通的equinox。
你可以查看一下集成测试基类,看看你需要哪些包。