码迷,mamicode.com
首页 > 其他好文 > 详细

[Camel Basics]

时间:2014-08-08 23:50:06      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:style   color   java   io   amp   size   ad   ef   

Define routes:

Either using Spring xml or Java DSL.

Spring xml:

<camelContext>

  <routeBuilder ref="myBuilder" />   //to load the Java DSL routes defined in MyRouteBuilder class

  <routeContextRef> //to load the routes in <routeContext> defined in other xml file

    <route> 

    <from> <process> <to>

  </route>

</....>

<bean id="myBuilder" class="org.apache.camel.spring.example.test1.MyRouteBuilder"/>

Java DSL:

extends RouteBuilder, implement the abstract method configure().

@Override
public void configure() throws Exception {

  Endpoint orderUpdates = endpoint("pubsub://batman-order-updates");
  from("pubsub://adv-updates").process(galaxyAdvCache.input(header(Ref.INBOX)));

}

asd

[Camel Basics],布布扣,bubuko.com

[Camel Basics]

标签:style   color   java   io   amp   size   ad   ef   

原文地址:http://www.cnblogs.com/chayu3/p/3900168.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!