`

Apache ServiceMix学习【使用整合】1

 
阅读更多

1.     serviceMix 特点:
支持的协议有:
File;FTP;Http/s;jms;smtp;soap;tcp;xmpp
与其他引擎的支持:
Apache Camel;apache cxf;apache ode;drools;os workflow;pojos;quartz;scripting;saxon Xquery and xslt;ws-notification
支持的安全:
JAAS,WS-Security
与web 容器的集成
JBoss,Geronimo,jetty,tomcat,weblogic,websphere
 

2.     与Camel 集成
先查看是否存在camel相关features,没有则按照相应的bundles
接下来我们做一个例子:分别设置两个目录input和output,在input放入文件后则被传送到output中。而这个过程就是通过serviceMix调用camel router来完成
A. Blueprint xml file
下面是一个配置的router文件描述,你可以通过自己写文件,当然最好还是用可视化工具,后面我们再花时间聊聊这东东,这个时候就绕不开Enterprise Integration pattern 又是标准,老外厉害。
 我们这里直接先贴上文件:
<?xml version="1.0" encoding="UTF-8"?>
<blueprint
    xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
    xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">
 
    <camelContext xmlns="http://camel.apache.org/schema/blueprint">
        <route>
            <from uri="file:bgao/input" />
            <log message="happy day!!!" />
            <to uri="file:bgao/output" />
        </route>
    </camelContext>
</blueprint>
并命名为firstCamelRouter.xml
 
B. 配置到serviceMix
将文件放入到serviceMix的deploy中,这个时候后再serviceMix目录下发现bgao的目录并下面有个input文件夹,这时候如果在input文件夹放入一个文件,这bgao目录下会出现output目录并且将input目录的文件移到output上。通过log:display  可以查看到当前这个动作的日志。
 
通过karaf@root> osgi:list | grep xml
[  43] [Active     ] [GracePeriod ] [       ] [   60] activemq-broker.xml (0.0.0
)
[ 129] [Active     ] [            ] [       ] [   60] Apache ServiceMix :: Bundl
es :: xmlsec (1.4.5.1)
[ 138] [Active     ] [            ] [       ] [   60] Apache ServiceMix :: Bundl
es :: xmlbeans (2.4.0.4)
[ 142] [Active     ] [            ] [       ] [   60] Apache ServiceMix :: Bundl
es :: xmlresolver (1.2.0.3)
[ 163] [Active     ] [Created     ] [       ] [   60] firstCamelRouter.xml (0.0.
0)
得到当前ID为163;通过osgi:stop 163或者  osgi:start 163 来启动或者关闭当前bundle
 
3.     与ActiveMQ集成
先查看是否存在camel相关features, 没有则按照相应的bundles
我们做一个例子:
对两个文件进行文件移动,同时对MQ队列产生一个event 消息并捕获消息打出到日志。
第一个文件:firstMq.xml
<?xml version="1.0" encoding="UTF-8"?>
<blueprint
    xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
    xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">
 
    <camelContext xmlns="http://camel.apache.org/schema/blueprint">
        <route>
            <from uri="file:bgao/mq/input" />
            <to uri="file:bgao/mq/output" />         
                <setBody>
                <simple>
                File Move Event (${file:name},${date:now:hh:MM:ss.SSS})
                </simple>
                </setBody>
                <to uri="activemq://event" />
        </route>         
    </camelContext>
</blueprint>
这时候,文件已经移到output,现在是event message都在队列里面,但还没有人去处理他,现在通过secondeMq里处理她。
设置第二个文件 secondMq.xml 放入deloy文件夹中
<?xml version="1.0" encoding="UTF-8"?>
<blueprint
    xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
    xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">
 
    <camelContext xmlns="http://camel.apache.org/schema/blueprint">
        <route>
        <from uri="activemq://event" />
            <from uri="file:bgao/mq/input" />
            <to uri="log:events" />         
        </route>         
    </camelContext>
</blueprint>
启动当前这个bundle 然后打日志就发现有
2012-06-11 16:01:43,751 | INFO  | sConsumer[event] | events
      | ?                                   ? | 91 - org.apache.camel.camel-core
 - 2.8.4 | Exchange[ExchangePattern:InOnly, BodyType:String, Body:
                        File Move Event (address list20120130.xls,04:06:08.272)
                        ]
2012-06-11 16:01:43,751 | INFO  | sConsumer[event] | events
      | ?                                   ? | 91 - org.apache.camel.camel-core
 - 2.8.4 | Exchange[ExchangePattern:InOnly, BodyType:String, Body:
                        File Move Event (jms-1_1-fr-spec.pdf,04:06:08.469)
                        ]
2012-06-11 16:01:43,752 | INFO  | sConsumer[event] | events
      | ?                                   ? | 91 - org.apache.camel.camel-core
 - 2.8.4 | Exchange[ExchangePattern:InOnly, BodyType:String, Body:
                        File Move Event (新建文本文档 (3).txt,04:06:08.765)
 

分享到:
评论

相关推荐

    servicemix 7安装使用及camel-cxf代理webservice

    【标题】:“servicemix 7安装使用及camel-cxf代理webservice”涉及的知识点主要涵盖Apache ServiceMix 7的安装配置、Apache Camel和Apache CXF的集成使用,以及如何利用它们来代理Web服务。 Apache ServiceMix是...

    org.apache.servicemix.bundles.spring-jdbc-3.2.8.RELEASE_2.zip

    1. **Apache ServiceMix**:了解 ServiceMix 如何作为 ESB(企业服务总线)工作,以及如何使用其集成的组件,如 Spring、CXF 和 Camel,来构建和管理 SOA(面向服务架构)应用程序。 2. **Spring JDBC**:理解 ...

    apache-servicemix-4.4.0(1)

    ServiceMix 使用OSGi(Open Services Gateway Initiative)框架,它允许组件化的应用程序开发,提供动态模块化和版本控制,增强了系统的可扩展性和灵活性。 6. **Maven 集成**: 为了方便项目的构建和管理,...

    servicemix5:Apache ServiceMix 5的镜像

    Apache ServiceMix 5 是一个基于 OSGi 的企业级服务集成平台,它允许开发者通过统一的框架整合不同的Java EE、Web服务、SOA组件以及多种轻量级技术。这个镜像可能包含了Apache ServiceMix 5的完整源码,用于开发、...

    SERVICEMIX学习笔记最终版.pdf

    通过上述知识点的学习,我们可以更好地理解ServiceMix的安装、配置和使用方法,同时也能掌握如何利用Maven来管理和构建基于ServiceMix的应用项目。这对于实际开发中整合不同服务、提高系统集成效率具有重要意义。

    ServiceMix学习笔记

    本篇学习笔记将深入探讨ServiceMix的使用,包括其安装、核心概念以及如何创建Maven项目。 1. **ServiceMix 安装与入门** ServiceMix 的安装非常简单,只需从Apache官网下载对应的压缩包,解压后进入bin目录,运行...

    org.apache.servicemix.bundles.juel-2.1.3_1.zip

    标题中的"org.apache.servicemix.bundles.juel-2.1.3_1.zip"表明这是一个Apache ServiceMix捆绑包,包含的是JUEL(Java Unified Expression Language)的特定版本,2.1.3_1。Apache ServiceMix是基于OSGi的全面企业...

    servicemix代理web service

    1. **Apache Servicemix基础**:Servicemix是基于OSGi容器的开源企业服务总线(ESB),它提供了一个灵活的平台来整合不同的系统和应用,通过各种协议和服务标准进行通信。它支持多种服务标准,如JMS、HTTP、FTP、...

    org.apache.servicemix.bundles.swagger-jaxrs-1.3.2_2.zip

    这个版本可能已经被Apache ServiceMix整合和优化,以便在服务混合环境中更好地工作。 描述中提到的"java-merge-sort.zip"是一个基于Java实现的N路归并排序算法。归并排序是一种分治策略,它将大问题分解为小问题来...

    How does ServiceMix compare to Tuscany or SCA

    ServiceMix是Apache软件基金会的一个开源企业服务总线(ESB),它提供了一个灵活的平台,用于集成各种应用程序和服务。ServiceMix基于Java执行环境(JVM),支持多种协议和标准,如Java Message Service (JMS)、Java...

    JBI开发指南(Servicemix开发指南)

    Apache ServiceMix是一个开源的、遵循JBI规范的企业服务总线(Enterprise Service Bus, ESB),它提供了JBI运行环境和一些开箱即用的组件,便于开发者进行服务集成和消息传递。ServiceMix-bean组件则是ServiceMix中...

    使用Servicemix(ESB)发布一个外部的WebService

    Servicemix(ESB) 是一款开源的企业服务总线(Enterprise Service Bus),它提供了一种灵活、可扩展的方式来整合不同的系统和应用。在本文中,我们将深入探讨如何使用Servicemix来发布一个外部的Web Service。 1. **...

    ws-demo.zip

    【描述】提到的“在Servicemix中集成自己的第一个Webservices接口”,指的是将自定义的Web服务接口整合到Apache ServiceMix这一企业级服务总线(ESB)中。ServiceMix是一个基于OSGi的开放源代码企业级服务总线,它...

    2011-itri-esbproject

    本专案以Apache ServiceMix为基础,设计一以JBI为基础之云端服务整合平台软体架构,内容包含基于JBI与Apache ServiceMix之企业服务汇流排架构、基于JBI及OSGi之云端服务元件模型之设计、ESB针对各式异质端点...

    apache-activemq-5.5-fuse-esb

    在本案例中,“apache-activemq-5.5-fuse-esb”可能指的是Apache ActiveMQ的一个特定版本,整合到Fuse ESB中的版本号为5.5.0,即"apache-activemq-5.5.0-fuse-00-27"。 1. **Apache ActiveMQ**:作为JMS实现,...

    Apache ODE开发指南

    当前版本提供了两种集成层实现:Apache AXIS2,使用 WEB 服务进行交互;ServiceMix ix,通过 JBI 消息总线进行交互。 5. 用户工具 用户工具提供了流程管理接口,通常定义了五种操作:List—获取流程的信息列表;...

    ESB产品说明

    LogicBlaze公司是ServiceMix的主要贡献者之一,同时IONA也参与了ServiceMix的发展,为FUSE平台(包括Apache ActiveMQ、Apache CXF、Apache Camel等)提供了技术支持。ServiceMix的更多信息,可参考:...

    使用Web Services Explorer测试Webservice服务.docx

    总之,通过使用Web Services Explorer测试Webservice服务,开发者可以确保服务按照预期工作,而ServiceMix作为一个强大的ESB,可以帮助整合各种系统和服务。这两个工具对于Java开发者来说是至关重要的,因为它们简化...

Global site tag (gtag.js) - Google Analytics