有多种方法可以将依赖捆绑软件部署到 OSGi 容器。以下是其中的一些:
1 Felix OBR 捆绑软件存储库
首先,您需要使用 bindex 等工具为可用的捆绑包创建一个 XML 索引文件。如果您使用的是 maven-bundle-plugin,那么它会自动在 ~/.m2/repository/repository/repository.xml 中维护一个 OBR 索引。
使用 OBR 命令行界面加载索引:
> obr:addUrl file:/Users/derek/.m2/repository/repository.xml
然后,请求 OBR 部署目标捆绑包,并从 OBR 索引确定依赖关系:
> obr:deploy com.paremus.posh.sshd
Target resource(s):
-------------------
Paremus Posh Ssh Daemon (1.0.23.SNAPSHOT)
Required resource(s):
---------------------
Paremus Command API (1.0.23.SNAPSHOT)
Optional resource(s):
---------------------
Paremus Config Admin Commands (1.0.23.SNAPSHOT)
Paremus OSGi & LDAP Types (1.0.23.SNAPSHOT)
2 阿帕奇卡拉夫
Karaf 支持“功能”,这些功能基本上是提供该功能所需的捆绑包列表:
karaf@root> features:info obr
Description of obr 2.0.0 feature
----------------------------------------------------------------
Feature has no configuration
Feature has no dependencies.
Feature contains followed bundles:
mvn:org.apache.felix/org.apache.felix.bundlerepository/1.6.4
mvn:org.apache.karaf.shell/org.apache.karaf.shell.obr/2.0.0
mvn:org.apache.karaf.features/org.apache.karaf.features.obr/2.0.0
karaf@root> features:install obr
3 日食处女座
Virgo使用计划来定义构成应用程序的工件,并且它能够自动提供应用程序的依赖项,包括本地和远程存储库中的捆绑包,计划,计划存档(PAR)和配置。
4 帕雷莫斯灵活
Nimble 使用 OBR(或其自己的扩展)存储库索引来自动部署激活目标捆绑包所需的所有依赖捆绑包(并在目标捆绑包停止时卸载它们)。它还可以检测其他依赖项,例如 WAB 捆绑包需要 Web 扩展器,并根据可配置的策略自动安装一个。
Nimble还可以配置为启动Glassfish,以便其功能可用于Glassfish容器中的捆绑包。
以下示例还显示,激活 sshd 时会自动安装日志记录支持:
$ posh
________________________________________
Welcome to Paremus Nimble!
Type 'help' for help.
[denzil.0]% nim:add --dry-run com.paremus.posh.sshd@active
-- sorted parts to install --
4325 osgi.resolved.bundle/ch.qos.logback.core:0.9.22
-- start dependency loop --
5729 osgi.resolved.bundle/com.paremus.util.logman:1.0.23.SNAPSHOT
5727 osgi.active.bundle/com.paremus.util.logman:1.0.23.SNAPSHOT
3797 osgi.resolved.bundle/ch.qos.logback.classic:0.9.25.SNAPSHOT
3792 osgi.resolved.bundle/slf4j.api:1.6
-- end dependency loop --
436 osgi.resolved.bundle/org.apache.mina.core:2.0.0.RC1
6533 osgi.resolved.bundle/sshd-core:0.3
398 osgi.resolved.bundle/com.paremus.posh.sshd:1.0.23.SNAPSHOT
396 osgi.active.bundle/com.paremus.posh.sshd:1.0.23.SNAPSHOT
(免责声明:我是Paremus的开发人员)
5 阿帕奇·菲利克斯·戈戈
gogo 是新的 RFC147 标准命令行 shell。它已经在Felix,Karaf,Nimble中使用,并将很快在Glassfish中使用。
Gogo允许您以交互方式以脚本形式运行任何可以键入的命令。因此,您可以生成要安装的捆绑软件列表并将其转换为脚本,甚至可以从工作配置中捕获已安装的捆绑软件,以便可以从干净的开始重新创建它。