Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache Camel for Asynchronous Calls

Does it make sense to use Apache Camel for Asynchronous requests? Or should I use simple MoM using a JMS server. There are no Enterprise Integration Patterns that I'll require.

Any help would be useful.

like image 455
a-sak Avatar asked Feb 19 '09 22:02

a-sak


1 Answers

Even if you are not using any Enterprise Integration Patterns (yet) - Camel is great at integrating messaging into your application while hiding all of the middleware APIs while letting you easily switch between all the various different middleware technologies usually by just changing one or two strings.

e.g. see these links for more detail

  • POJO producing
  • POJO consuming
  • Spring remoting

There is a POJO Messaging Example that walks you through using Camel purely as a way to integrate messaging into your POJOs

like image 157
James Strachan Avatar answered Sep 27 '22 23:09

James Strachan