Java Messaging : Difference between ActiveMQ, Mule, ServiceMix and Camel

JavaApache CamelActivemqMessagingApache Servicemix

Java Problem Overview


I am new to Messaging and want to know the difference between ActiveMQ, Mule, ServiceMix and Camel

Anyone knows how each of these product is different?

Thanks in advance !

EDIT: Also would like to know any good place/resource to learn these things.

Java Solutions


Solution 1 - Java

ActiveMQ is a message broker which implements the JMS API and supports a number of cross language clients and network protocols. It lets you implement queues or topics and write listeners or subscribers to respond to queue events.

Mule and ServiceMix are open source ESB (enterprise service bus). An ESB has capabilities beyond JMS: queuing is key, but so are transformation, routing, logging, security, etc.

Apache Camel is an implementation of the patterns in Enterprise Integration Patterns. It can use JMS and other components to put the ideas from that book into place.

JMS is fundamental to the other technologies, like JDBC is the foundation for Hibernate, iBatis, etc.

JMS is a Java API and a specification and TCK (part of Java EE). ActiveMQ is a particular implementation of it.

Camel can use ActiveMQ (and Camel is bundled inside the ActiveMQ broker so you can easily route to and from JMS to the other components Camel supports).

Camel doesn't use Mule or ServiceMix directly; though ServiceMix uses Camel as its preferred routing engine and EIP implementation. Camel does have a ton of different components though that use various different technologies.

Solution 2 - Java

First let's define

JMS is a Java Messaging Service protocol specification.
ESB is Enterprise Service Bus.
JBI is Java Business Integration.

Now we can answer in details:

Apache ActiveMQ is an implementation of the above JMS (Java Messaging Service).

Apache Camel is a message routing engine implementing Enterprise Integration Patterns.
It provides a lot of predefined components.
One of its key component supports JMS (Java Messaging Service).

Apache ServiceMix is an implementation of the above ESB (Enterprise Service Bus)
compatible with the JBI (Java Business Integration) specification.
It also provides many infrastructural features not available in Camel (like services OSGI bundle support).
SM makes heavy use of Camel.

Mule is another implementation of ESB (Enterprise Service Bus), but not related to the Camel/ServiceMix family.

Solution 3 - Java

Apache Service Mix :: Its an ESB (Enterprise Service Bus) , a JBI Container and an Integration platform.

Apache Camel: Smart Routing and Mediation Engine which implements EIP (Enterprise Integration Patterns).

Apache ActiveMQ: Its a Message Broker that implements JMS.

Solution 4 - Java

Mule is a Enterprise service bus providing end to end integration solution.

ActiveMQ is message broker for queueing messages between subscriber and receiver.

ServiceMix is also a ESB i.e. Enterprise Service Bus

Solution 5 - Java

Camel empowers you to define routing and mediation rules in a variety of domain-specific languages. Mule and SeriviceMix is ESB. ActiveMQ is Messaging service.

Solution 6 - Java

Apache Camel is the implementation of EIP (Enterprise Integration Patterns)

ServiceMix is the product that conforms to the principles of ESB in an SOA environment.

Active MQ is as good as any other implementation of JMS API

Mule is also an ESB

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionpeakitView Question on Stackoverflow
Solution 1 - JavaduffymoView Answer on Stackoverflow
Solution 2 - JavaHenryk KonsekView Answer on Stackoverflow
Solution 3 - JavaSriniView Answer on Stackoverflow
Solution 4 - JavaRajkumar EpariView Answer on Stackoverflow
Solution 5 - JavaAakash KediaView Answer on Stackoverflow
Solution 6 - JavaMuhammed Shakir MisarwalaView Answer on Stackoverflow