zoukankan      html  css  js  c++  java
  • 安装Apache Felix OSGI Framework小记

        Felix是apache的开源OSGI服务框架,到 http://felix.apache.org/downloads.cgi 可以下载到最新的版本。

        解压后目录结构如下:

        felix-framework-4.2.1

            -bin

            -bundle

            -conf

            -doc

        bin目录下是felix.jar

        bundle下面的bundle会在启动时自动安装

        conf下面是配置文件

        1. 启动felix

             启动命令行,并定位到安装目录,

             执行 java -jar ./bin/felix.jar 这会使用默认的配置,如果需指定另一个配置文件,则要

             执行java -Dfelix.config.properties=file:./conf/config.properties -jar ./bin/felix.jar

             执行成功,我们会看到felix的 gogo已经可以使用,这是felix的shell.

         2.  执行lb可以列出当前的bundle的状态

              install file:./bundle/***.jar

              start bundleID

              这样就可以安装和启动一个bundle了

         3. 安装http服务和felix控制台bundle

              http://felix.apache.org/documentation/subprojects/apache-felix-http-service.html#installing   这是http的详细介绍

    • org.apache.felix.http.jetty - HTTP Service implementation that is embedding Jetty server.
    • org.apache.felix.http.whiteboard - Whiteboard implementation that uses any HTTP Service implementation.
    • org.apache.felix.http.bridge - HTTP Service implementation that uses the host applicaiton server (bridged mode). Must be used with proxy.
    • org.apache.felix.http.bundle - All in one bundle that includes all of the above.
    • org.apache.felix.http.proxy - Proxy that is needed inside WAR when deployed inside an application server.
           这里说只要org.apache.felix.http.bundle就可以了,我试了下,发现只安装这个仍然不行,还是要安装org.apache.felix.http.jetty
           安装了jetty后,localhost:8080才能访问
           在下载页面下载Web Console (all-in-one bundle) 并安装这个bundle,之后通过
           localhost:8080/system/console 就可以访问felix的控制台了。


  • 相关阅读:
    MySQL Explain优化
    mysql联合索引
    MySQL索引类型
    php常用的排序算法与二分法查找
    mysql 主从复制(mysql双机热备的实现)
    mysql 主从复制 (2)
    Linux 查看进程之PS命令
    PHP isset 和 array_key_exists 对比
    Linux md5sum 的用法
    Linux Sphinx 安装与使用
  • 原文地址:https://www.cnblogs.com/snake-hand/p/3143012.html
Copyright © 2011-2022 走看看