- 浏览: 1146753 次
- 性别:
- 来自: 火星郊区
博客专栏
-
OSGi
浏览量:0
文章分类
- 全部博客 (695)
- 项目管理 (48)
- OSGi (122)
- java (79)
- Vaadin (5)
- RAP (47)
- mysql (40)
- Maven (22)
- SVN (8)
- 孔雀鱼 (10)
- hibernate (9)
- spring (10)
- css (3)
- 年审 (6)
- ant (1)
- jdbc (3)
- FusionCharts (2)
- struts (4)
- 决策分析 (2)
- 生活 (10)
- 架构设计 (5)
- 破解 (2)
- 狼文化 (4)
- JVM (14)
- J2EE (1)
- 应用服务器 (1)
- 我的链接 (5)
- 数学 (2)
- 报表 (1)
- 百科 (6)
- Flex (7)
- log4j (2)
- PHP (1)
- 系统 (2)
- Web前端 (7)
- linux (6)
- Office (1)
- 安全管理 (5)
- python (2)
- dom4j (1)
- 工作流 (3)
- 养生保健 (4)
- Eclipse (8)
- 监控开发 (1)
- 设计 (3)
- CAS (1)
- ZK (41)
- BluePrint (3)
- 工具 (1)
- SWT (7)
- google (2)
- NIO (1)
- 企业文化 (2)
- Windoes (0)
- RCP (7)
- JavaScript (10)
- UML (1)
- 产品经理 (2)
- Velocity (10)
- C (1)
- 单元测试 (1)
- 设计模式 (2)
- 系统分析师 (2)
- 架构 (4)
- 面试 (2)
- 代码走查 (1)
- MongoDB (1)
- 企业流程优化 (1)
- 模式 (1)
- EJB (1)
- Jetty (1)
- Git (13)
- IPV6 (1)
- JQuery (8)
- SSH (1)
- mybatis (10)
- SiteMesh (2)
- JSTL (1)
- veloctiy (1)
- Spring MVC (1)
- struts2 (3)
- Servlet (1)
- 权限管理 (1)
- Java Mina (1)
- java 系统信息 (6)
- OSGi 基础 (3)
- html (1)
- spring--security (6)
- HTML5 (1)
- java爬虫搜索 (1)
- mvc (3)
最新评论
-
Tom.X:
http://osgia.com/
将web容器置于OSGi框架下进行web应用的开发 -
chenyuguxing:
你好, 为什么我的bundle export到felix工程中 ...
在Apache Felix中运行bundle -
string2020:
<niceManifest>true</ni ...
Bundle Plugin for Maven -
jsonmong:
OSGI,是未来的主流,目前已相当成熟。应用OSGI比较好的, ...
基于OSGi的声明式服务 -
zyhui98:
貌似是翻译过来的,有很少人在linux上做开发吧
如何成为“10倍效率”开发者
OSGi Core定义了一个服务层,提供了一个Bundle之间交互的简单机制,通过注册Java Object 至OSGi service registry。 Blueprint Container
(1) Blueprint Configuration
默认配置文件位于:ProjectDir/src/main/resources/OSGI-INF/blueprint
默认XML文件命名空间:
- <? xml version = "1.0" encoding = "UTF-8" ?>
- < blueprint xmlns = "http://www.osgi.org/xmlns/blueprint/v1.0.0" >
- ...
- </ blueprint >
自定义配置文件地址:
Bundle-Blueprint: lib/account.xml, security.bp, cnf/*.xml
Mandatory dependencies:
OSGi Service 中Dependencies默认是必须的,但可通过设置reference和reference-list元素的availability为optional
来改变这中现象。正常情况下,当Bluepring Container初始化时,通过一定范围的时间来允许Dependencies
Resolve, 该时间么哦人为:5秒,可通过下面的方式自定义:
- Bundle-SymbolicName: org.fusesource.example.osgi-client;
- blueprint.graceperiod: = true ;
- blueprint.timeout: = 10000
(2) Defining a Service Bean
(3) Exporting a Service
1. Exporting with a single interface
- < blueprint xmlns = "http://www.osgi.org/xmlns/blueprint/v1.0.0" >
- < bean id = "savings" class = "org.fusesource.example.SavingsAccountImpl" />
- < service ref = "savings" interface = "org.fusesource.example.Account" />
- </ blueprint >
2. Exporting with multiple interfaces
- < blueprint xmlns = "http://www.osgi.org/xmlns/blueprint/v1.0.0" >
- < bean id = "savings" class = "org.fusesource.example.SavingsAccountImpl" />
- < service ref = "savings" >
- < interfaces >
- < value > org.fusesource.example.Account </ value >
- < value > org.fusesource.example.SavingsAccount </ value >
- </ interfaces >
- </ service >
- </ blueprint >
注意:interface和interfaces不能同时在service元素中使用。
3. Exporting with auto-export
例如:下面的代码中Blueprint将自动注册所有SavingsAccountImpl实现的public接口:
- < blueprint xmlns = "http://www.osgi.org/xmlns/blueprint/v1.0.0" >
- < bean id = "savings" class = "org.fusesource.example.SavingsAccountImpl" />
- < service ref = "savings" auto-export = "interfaces" />
- </ blueprint >
其中auto-export默认值为:disabled,其他可选值为:
interfaces:注册该类实现的所有public的接口;
class-hierarchy:注册该类自己以及他的父类,但不包含Object类;
all-classes:注册该类自己以及他的父类,同时包括该类实现的接口。
4. Setting service properties
- < blueprint xmlns = "http://www.osgi.org/xmlns/blueprint/v1.0.0" >
- < bean id = "savings" class = "org.fusesource.example.SavingsAccountImpl" />
- < service ref = "savings" auto-export = "interfaces" ranking = "10" >
- < service-properties >
- < beans:entry key = "bank.name" value = "HighStreetBank" />
- </ service-properties >
- </ service >
- </ blueprint >
说明:A. 注册的service默认的Properties有:osgi.service.blueprint.compname值为service bean 的id
B. service.ranking 是系统自动设置。
C. 当系统查找服务时返回对个匹配的服务时,默认选择ranking值最高的服务,因此可配置该属性用以服务
之间的区分。
5. Specifying a registration listener
- < blueprint xmlns = "http://www.osgi.org/xmlns/blueprint/v1.0.0" . >
- < bean id = "listenerBean" class = "org.fusesource.example.Listener" />
- < service ref = "savings" auto-export = "interfaces" >
- < registration-listener ref = "listenerBean"
- registration-method = "register" unregistration-method = "unregister" />
- </ service >
- </ blueprint >
- //Java
- package org.fusesource.example;
- public class Listener {
- public void register(Account service, java.util.Map serviceProperties) {
- }
- public void unregister(Account service, java.util.Map serviceProperties) {
- }
- }
说明:register和unregister方法的参数,第一个参数可以是service class或service class 实现的接口,因为该
参数包含service instance, 如果该service bean 被声明为property, 在注册的时候是没有service instance可用
的,因此此时该参数的值为null.
第二个参数可以是java.util.Map或java.util.Dictionary,这个Map包含service 注册时的Properties.
(4) Importing a Service
使用reference和reference-list元素Import Service, 两者之间的区别是:reference用于访问stateless service,
而reference-list用于访问stateful service.
1. Matching by interface (stateless)
- < blueprint xmlns = "http://www.osgi.org/xmlns/blueprint/v1.0.0" >
- < reference id = "savingsRef" interface = "org.fusesource.example.SavingsAccount" />
- < bean id = "client" class = "org.fusesource.example.client.Client" >
- < property name = "savingsAccount" ref = "savingsRef" />
- </ bean >
- </ blueprint >
- package org.fusesource.example.client;
- import org.fusesource.example.SavingsAccount;
- public class Client {
- SavingsAccount savingsAccount;
- // Bean properties
- public SavingsAccount getSavingsAccount() {
- return savingsAccount;
- }
- public void setSavingsAccount(SavingsAccount savingsAccount) {
- this .savingsAccount = savingsAccount;
- }
- }
2. Matching by interface (stateful)
- < blueprint xmlns = "http://www.osgi.org/xmlns/blueprint/v1.0.0" >
- < reference-list id = "savingsListRef"
- interface = "org.fusesource.example.SavingsAccount" />
- < bean id = "client" class = "org.fusesource.example.client.Client" >
- < property name = "savingsAccountList" ref = "savingsListRef" />
- </ bean >
- </ blueprint >
- package org.fusesource.example.client;
- import org.fusesource.example.SavingsAccount;
- public class Client {
- java.util.List<SavingsAccount> accountList;
- // Bean properties
- public java.util.List<SavingsAccount> getSavingsAccountList() {
- return accountList;
- }
- public void setSavingsAccountList(java.util.List<SavingsAccount> accountList) {
- this .accountList = accountList;
- }
- }
3. Matching service properties with a filter
- < reference id = "savingsRef" interface = "org.fusesource.example.SavingsAccount" filter = "(bank.name=HighStreetBank)" />
- < reference-list id = "savingsRef" interface = "org.fusesource.example.SavingsAccount" filter = "(bank.name=HighStreetBank)" />
4. Specifying whether mandatory or optional
默认值:mandatory
- < reference id = "savingsRef" interface = "org.fusesource.example.SavingsAccount" availability = "mandatory" />
5. Specifying a reference listener
- < blueprint xmlns = "http://www.osgi.org/xmlns/blueprint/v1.0.0" >
- < reference id = "savingsRef" interface = "org.fusesource.example.SavingsAccount" >
- < reference-listener bind-method = "onBind"
- unbind-meth od = "onUnbind" >
- < bean class = "org.fusesource.example.client.Listener" />
- </ reference-listener >
- </ reference >
- < bean id = "client" class = "org.fusesource.example.client.Client" >
- < property name = "savingsAcc" ref = "savingsRef" />
- </ bean >
- </ blueprint >
- package org.fusesource.example.client;
- import org.osgi.framework.ServiceReference;
- public class Listener {
- public void onBind(ServiceReference ref) {
- System.out.println("Bound service: " + ref);
- }
- public void onUnbind(ServiceReference ref) {
- System.out.println("Unbound service: " + ref);
- }
-
}
发表评论
-
关于Felix Log Service
2012-12-07 16:44 1564OSGi服务纲要规范中定义了服务于OSGi平台的通用日志服 ... -
Maven 3 Felix 4 Eclipse 的搭建与部署(部分转载自别人文章)
2012-10-18 10:24 20274.1.开发环境搭建 4.2开发工具 Maven 3 F ... -
【绝对路径】OSGi环境中获取Plugin/Bundle中文件资源的绝对路径
2012-10-08 10:53 2483摘要:在进行Eclipse RCP开发的过程中,需要使用一 ... -
OpenCore:基于OSGi开发纯插件体系结构的WEB应用程序
2012-09-21 17:46 1419随着OSGi/Equinox逐渐成为Java EE服务端的基础 ... -
OSGi技术在Java Web开发中的应用
2012-09-20 11:26 1405随着 Java SE 对模块化功能原生支持的一再推迟(据最 ... -
OSGI典型的应用案例
2012-09-20 11:26 1630OSGI典型的应用案例主要有两个:分别是Eclipse和BMW ... -
OSGi特点
2012-09-20 11:26 12461、JRE版本无关性。虽然Java一直被人们认为是“Write ... -
OSGI与JMX 的关系
2012-09-19 17:09 1054不过重点是: JMX 本来设计的用途就只为了管理,我们不 ... -
在equinox环境开发web应用的"利器" -- registerResources()方法 详解
2012-09-19 17:07 1226registerResources()方法详解 1、简介 ... -
在equinox环境开发web应用的"利器" -- 序
2012-09-19 17:05 1357在equinox环境中开发web应用必须要借助一些工具包提供的 ... -
equinox环境下web应用资源的部署
2012-09-19 17:04 1304osgi的equinox实现环境下,web服务器和web应用都 ... -
OSGi产生的背景--在繁荣的混乱之中走出困惑
2012-09-19 16:58 1163软件的复杂性正在以惊 ... -
将web容器置于OSGi框架下进行web应用的开发
2012-09-16 14:26 3534将web容器置于OSGi框架下,其实就是将web容器做成OSG ... -
在Eclipse中开发OSGi Bundle
2012-09-16 14:26 1328Eclipse为开发OSGI Bundle提供了良好的支持,它 ... -
【第一代服务注册形式】 - 将一个Bundle注册为服务
2012-09-14 10:09 11521、创建业务接口类及其实现类 Java代码 ... -
Declarative Services规范简介及应用
2012-09-14 10:08 1419Declarative Services 是一 ... -
用FileInstall管理Bundle的动态安装、启动、卸载
2012-09-14 10:07 13261、文件目录如下: F:\study_osgi ... -
服务工厂 - Bundle消费者返回不同的服务对象
2012-09-14 10:03 1205一般情况下,服务对象在注册后,任何其它的Bundle在请求 ... -
服务跟踪(ServiceTracker)
2012-09-14 09:58 1154当多个Bundle使用同一 ... -
OSGI 中嵌入 Http 服务器的运行环境
2012-07-31 13:44 3051Eclipse 4.2 OSGI 依赖的Bundle: or ...
相关推荐
标题中的“tomcat嵌入OSGI容器”是指在Apache Tomcat服务器中集成OSGI(Open Service Gateway Initiative)框架,使得Tomcat能够支持模块化的应用程序部署和管理。OSGI是一种Java平台上的服务导向架构,它允许动态地...
osgi多个bundle之间读取同一配置文件,需要单独添加一个用来读取配置文件的bundle
示例源码工程可能包含了如何在实际项目中实现这一轻量级集成的代码示例,包括如何配置Web容器以托管OSGi容器,如何编写和打包OSGi Bundle,以及如何在Web应用中使用OSGi服务等。 通过阅读和理解这个源码工程,...
3. 将OSGi bundle部署到容器:将`com.sample.web_1.0.0.jar`和`com.sample.web.zip`中的bundle导入到OSGi容器中,这通常通过容器的管理界面或命令行工具完成。 4. 部署Web应用:如果`bridge.war`是一个Web应用,...
在Web容器中部署OSGi应用,特别是像Tomcat这样的流行Servlet容器,可以提高应用的灵活性、可维护性和可扩展性。本文将详细介绍如何使用桥接技术(如Apache Felix的WebConsole或Pax Web)在Tomcat中部署OSGi程序。 ...
这通常涉及到设置IDEA的项目结构、添加Felix框架的依赖、配置运行配置等操作,使得开发者可以在IDEA中调试和测试OSGI bundle。 **总结** OSGI bundle提供了一种模块化的软件开发方式,使得Java应用程序可以按需...
在OSGI环境中,每个bundle都是一个独立的代码单元,具有自己的类路径,并且可以有自己的依赖关系。这篇博客“浅析OSGI的bundle依赖”可能探讨了如何管理和解决这些模块间的依赖问题。 首先,我们来看一下OSGI中的...
3. 配置Pax Web或类似的Servlet容器,以支持OSGI bundle中的Spring MVC应用。 4. 在Spring MVC中定义Controller,这些Controller作为OSGI服务运行。 5. 调整Web应用的部署描述符(如web.xml),确保它与OSGI环境兼容...
3. **Bundle作为组件**:每个Bundle可以被视为独立的组件,它们之间通过OSGi服务注册表进行交互,实现动态的依赖管理和服务发现。 4. **使用脚本管理组件**:引入脚本语言,如JavaScript或Groovy,可以更灵活地管理...
osgi发布http服务的各种bundle,各种jar包,全全全~非常好用的技术包 包括:org.eclipse.equinox.http_1.0.0.v20060601a.jar org.eclipse.equinox.ds_1.0.0.v20060601a.jar org.eclipse.equinox.servlet.api_1.0.0...
这是通过像Equinox的Servlet Bridge这样的技术实现的,它充当了一个桥梁,让OSGi Bundle可以在传统的Web容器中运行。但是,这种方法并不理想,因为它通常较为复杂,而且Web项目本身并没有模块化为OSGi Bundle,因此...
标题"基于EQUINOX的OSGI BUNDLE运行例子"指的是一个实际操作示例,展示了如何在EQUINOX OSGi环境中运行OSGi Bundle。EQUINOX提供了一个完整的运行时环境,使得开发者可以方便地管理和执行这些模块化的Bundle。 描述...
- **容器管理**:Spring OSGi容器负责Bundle的生命周期管理和服务发现。 - **依赖注入**:Spring的DI特性与OSGi服务相结合,简化了模块间的依赖管理。 - **热部署**:在运行时可以更新Bundle,无需重启系统。 - **...
总结来说,`OSGI bundle change listener`是OSGi框架中用于监控bundle状态变化的关键机制,它允许开发者对bundle的生命周期进行精细控制,实现动态的服务注册、依赖管理和系统自适应配置。结合像VisualVM这样的工具...
3. **系统测试**:在实际OSGi容器中运行所有bundle,验证整个系统的功能和稳定性。 五、OSGi实践 1. **插件系统**:利用OSGi创建可扩展的应用程序框架,如Eclipse IDE就是基于OSGi的插件系统。 2. **分布式系统**...
6. **部署Bundle**:将Servlet Bundle安装到OSGi容器中。这可以通过容器的命令行接口、图形用户界面或API完成。 7. **启动和访问Servlet**:启动Servlet Bundle后,可以通过HTTP服务暴露Servlet,以便通过HTTP请求...
**示例应用**:压缩包中的"osgi_example"可能包含了一个简单的OSGi Bundle示例,例如,创建一个HelloWorld服务,其他Bundle可以注册和使用这个服务。 总结来说,基于Eclipse的Equinox框架开发OSGi Bundle应用,可以...
启动一个Web Bundle时,OSGi容器会解析MANIFEST.MF中的信息,并将Web应用部署到Jetty服务器上。停止时,Web应用从服务器上卸载,但Bundle本身仍保留在系统中。 **Web Bundle的优势** 1. **动态性**:Web Bundle...
Spring DM允许在OSGi容器中管理Spring应用的bean和服务。 - **与Hibernate的集成**:在OSGi环境中使用Hibernate,需要处理类加载和依赖的问题。可以通过使用特定的OSGi友好的Hibernate版本或适配器,如Hibernate ...
Spring OSGi是Spring框架与OSGi(Open Service Gateway Initiative)规范相结合的一种技术,它允许在OSGi容器中运行和管理Spring应用。OSGi是一种模块化系统,为Java应用程序提供了动态部署、版本控制和依赖管理的...