What Does Java Message Service (JMS) Mean?
Java Message Service (JMS) is an application programming interface (API) by Sun Microsystems that functions as Java message-oriented middleware. It is designed for an exchange of loosely coupled, reliable and asynchronous messages between different software application components (called clients), which are based on the Java 2 Platform, Enterprise Edition (J2EE). JMS is a messaging standard capable of creating, sending, receiving and reading messages as requests, reports, or events consumed by the software application components, not by humans. JMS allows programs in dissimilar systems, or written in different programming languages, to coordinate with each other via messages.
Techopedia Explains Java Message Service (JMS)
JMS API uses two messaging models:
Only one component is receiving the message.The source component is not operating when the receiving component receives the message.The receiving component is not operating when the message is sent.Messages successfully processed are being acknowledged by the receiving component.
The publisher component creates a message topic for other components to subscribe to.The subscriber component remains able to receive messages, unless a durable subscription is established.If a durable subscription is established, messages published while the subscriber is not able to receive messages will be redistributed whenever the receiving component reconnects.