-
Notifications
You must be signed in to change notification settings - Fork 0
1. Java Messaging Service (JMS)
JOHNYBASHA SHAIK edited this page Aug 31, 2018
·
3 revisions
JMS messaging model facilitates the enterprise application to
- send the messages asynchronously.
- process the stream of incoming messages concurrently.
JMS architecture consists of
- JMS Provider -- This handles the routing and delivery of the JMS message. (eg: Java EE compatible application server)
- JMS Message -- A piece of information exchange between JMS consumer and producer.
- JMS Consumer -- JMS Client that receives the JMS Message.
- JMS Producer -- JMS Client that sends the JMS Message
Below are the two messaging models JMS provides:
- Point to Point or Queue
- Publish and Subscribe or Topic