MongoDB auto-generated id with spring boot

In this project we are going to see how we can auto generate id in mongo db with spring boot. we are going to create a simple spring boot project with mongodb. Dependencies add the following dependencies in your spring boot application’s pom.xml Project structure let’s create our model class. inside this class make your … Read more

RabbitMQ using Spring Boot

What is RabbitMQ ? RabbitMQ is an open source message broker that implements AMQP(Advance Message Queuing Protocol). Some of the main features of RabbitMQ are Security, Asynchronous Messaging, etc. To perform message queuing we need three components: Producers: It publishes the message to the queue based on queue name. Broker: The message broker acts as … Read more