欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

11.7 使用Apache Camel路由引擎框架 博客分类: ActiveMQ in Action 翻译英文文档翻译 ActiveMQApache Camel路由引擎框架 

程序员文章站 2024-02-22 14:21:52
...

博客已搬家, 更好阅读体验, 猛戳 http://www.jack-yin.com/coding/translation/activemq-in-action/1732.html

 

11.7 Routing engine with Apache Camel framework

11.7 使用Apache Camel路由引擎框架

 

Apache Camel is a simple-to-use integration framework that’s easily embedded in containers

and applications.

 

Apache Camel是一个非常易于使用的集成框架,很容易集成到容器或者应用程序中.

 

At the core of the Camel framework is a routing engine builder. It allows you to

define your own routing rules, the sources from which to accept messages, and how to

process and send them to other destinations. Camel defines an integration language

that allows you to define routing rules, akin to business processes.

 

Camel框架的核心是一个路由引擎构建器.Camel允许你定义自己的路由规则,即,定义从什么地方接收消息,

以及如何处理和发送消息到其他消息目的地.Camel定义了一种集成语言,允许你用与定义业务逻辑一样的方式

定义路由规则.

 

....................