From the course: Spring: Messaging with JMS

Unlock the full course today

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

Project work for JMS message converter

Project work for JMS message converter - Spring Tutorial

From the course: Spring: Messaging with JMS

Start my 1-month free trial

Project work for JMS message converter

- [Narrator] Before we begin coding our sample message converter, I would like to cover how the project will be laid out. Specifically, we'll include both storefront JMS API and warehouse API functionality in this one project. Keep in mind, it's recommended to separate functionality like this used in an enterprise setting. The storefront warehouse API changes will include specifically identified sender and receiver classes for each action. This means we'll have a sender class associated with pushing book order requests and a receiver specifically associated for retrieving book order request from the message queue. If a different type of object is required to be sent, then we'll make sure that a different sender and receiver class is specified. Our object types we'll begin coding will be a book object, which includes a bookId and a title, a customer object, which includes a customer ID and a full name, and a book order object, which includes an order ID, a book object, and a customer…

Contents