Spring Boot MongoDB Tutorial
Spring Boot MongoDB Tutorial Introduction Spring Boot is one of the most popular and most used frameworks for building microservices. I am assuming that you have a Basic Knowledge of Spring Boot and have a Basic Spring Boot Application running in your machine. If not, please check my blog on Basic Spring Boot Application by going to the link: Spring Boot Tutorial . In this tutorial, we will be integrating a Spring Boot Application with MongoDB, which is a non-relational database, to perform CRUD operations. The same steps can be followed to connect to any other non-relational database. Requirements to Run the Application: Java Maven MongoDB IDE of your choice MongoDB should be setup and running in your machine. To setup, run and test if MongoDB is working fine, please refer to my post on: MongoDB Setup . In my MongoDB, I have created a database named: softwaredevelopercentral and collection named: employees...