From the course: Spring Boot 2.0 Essential Training

Unlock the full course today

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

Introduction to messaging

Introduction to messaging

From the course: Spring Boot 2.0 Essential Training

Start my 1-month free trial

Introduction to messaging

- [Instructor] Implementing asynchronous messaging with Spring Boot is actually a little bit easier than it is with just traditional Spring. But that's only because Spring Boot provides a lot of the default plumbing that you used to have to configure manually. The first question you may be asking is why do you care at all about using asynchronous messaging? And I urge you to really think about this one. Seldom is real-time processing actually a requirement. All too often, our business expects things to happen immediately. But there's no real beneficial reason why it has to happen that way. Especially, when an asynchronous communication is only a couple of seconds behind. Asynchronous messaging as a whole as long as done correctly, can reduce the overall strain on your system, sometimes dramatically by simply pushing tasks a second or two into the future, instead of right now. Modern messaging systems are efficient for…

Contents