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的控制台了。


  • 相关阅读:
    解决MyBatis的Mapper XML错误,系统起不来,也不报错问题
    tomcat启动卡在“INFO com.alibaba.druid.pool.DruidDataSource
    加速github访问速度
    LAN、WAN和WLAN的区别
    面试记录一
    C++纯虚函数(接口类)的使用
    CentOS 安装 Docker CE
    通过 plsql 连接远程 Oracle
    Yum 软件仓库配置
    qW3xT.2,解决挖矿病毒
  • 原文地址:https://www.cnblogs.com/snake-hand/p/3143012.html
Copyright © 2011-2022 走看看