Spring AMQP in Reactive Applications 1. Overview This tutorial shows how to create a simple Spring Boot Reactive Application that integrates with the RabbitMQ messaging server, a popular implementation of the AMQP messaging standard. We cover both – point-to-point and publish-subscribe scenarios – using a distributed setup that highlights the… Continue Reading spring-amqp-reactive

Java Weekly, Issue 257 Here we go… 1. Spring and Java ===== >> Practice Mock Interviews & Coding Problems with Pramp Sponsored If you’re looking to improve your interview game, definitely have a look at the Pramp mock interviews on Data Structures and Algorithms, System Design, etc. Get unlimited tries. >> Hibernate Tips: How to Exclude… Continue Reading java-weekly-257

Testing an Abstract Class With JUnit 1. Overview In this tutorial, we’ll analyze various use cases and possible alternative solutions to unit-testing of abstract classes with non-abstract methods. Note that testing abstract classes should almost always go through the public API of the concrete implementations, so don’t apply the below… Continue Reading junit-test-abstract-class