Apache Camel

Aim at application integration

http://camel.apache.org/

http://camel.apache.org/components.html

軽量なEIPフレームワーク

http://www.eaipatterns.com/toc.html

ブラウザでCamelの状態を確認・操作できるツール

http://hawt.io/getstarted/

同類製品 Mule ESB

http://www.mulesoft.com/platform/soa/mule-esb-open-source-esb

DEMO

★ルート記法

•Java DSL

from ("file:/tmp").to("jms:aQueue");

•Spring DSL

<route>

<from uri="file:/tmp"/>

<to uri="jms:aQueue"/>

</route>

•Scala DSL

from "file:/tmp" -> "jms:aQueue"

※他サイトを参照