From the course: Learning Java Enterprise Edition

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

JMS introduction

JMS introduction - Java EE Tutorial

From the course: Learning Java Enterprise Edition

Start my 1-month free trial

JMS introduction

- [Instructor] Okay, so now we're weaving further down the typical architecture of the Java E application. It's the data access layer. At this layer we have technologies that communicate with data stored, such as JPA, which we'll be having a look at later. Java Connector Architecture, that connects your application and enterprise information system, and Java Message Service, JMS, which is the subject of this video. Okay, let's get started. JMS is used for passing messages in a loosely coupled, asynchronous, scalable, and secure manner on LAN-distributed applications. Applications send and receive messages via the message-orientated middleware using what is known as destinations. Asynchronous means that the sender and the receiver of the message do not need to interact with the message queue at the same time. So the receiver can pick up the message at some time after the message was sent. And loosely coupled, because the sender knows nothing about the receiver, and the receiver knows…

Contents