Insert Data in MongoDB with Spring Boot – Building a Blog
Previously in Building a Blog: Securing Database Credentials Last time, we set up our database and Spring Boot project, and secured our database credentials. Now, we have to configure MongoDB in our project. Then we can start to insert data in mongodb and getting a feel for the queries to get the data from the…
Securing Database Credentials – Building a Blog
Previously in Building a Blog: Getting Started with MongoDB With our database set up, it is now time to make a MongoDB connection with Spring Boot. That connects the database to our backend system, making us ready to start implementing our operations. However, I don’t want my database credentials to be all over GitHub. Therefore,…
Choosing a Database: SQL or NoSQL? – Building a Blog
Previously in Building a Blog: Building a Blog – Let’s Get Started! With our first set of requirements defined, it is time to take a look at the very first one regarding the database. All the metadata of a blog post needs to be stored somewhere in some fashion. Therefore, choosing a database is something…