The Road to My Ultimate Training System
Announce Your Idea! Finally, I will be walking the road to my ultimate training system! Building my operating system will be a long but exciting journey! I have made a rough plan of the things that I still have to learn and which books to use for that purpose. The next step: announcing my idea and holding myself accountable to keep you up to date on the strides and struggles!
Let’s Get Started with Understanding the Machine!
Writing efficient code is difficult. To help write great code, I get started with understanding the machine by reading Randall Hyde’s newest book. Let’s find out what he’ll talk about in his book.
How to Throw Custom Exceptions with Spring Boot
In the process of building my blog, I want to be able to let the use know if something went wrong. It can vary from the standard error 404, a custom message to my own custom exceptions. I’ll show you how to throw custom exceptions with Spring Boot, so you can do it yourself next…
Check for Unique Documents in MongoDB with Spring Boot
Previously in Building a Blog: Adding Functionality to the Backend Whilst figuring out how exceptions work, I wanted to make sure that the blog posts are always unique. But how do we do that? That’s why I’ll show you how to check for unique documents in MongoDB with Spring Boot. @Indexed Annotation At first, I…
Adding Functionality to the Backend – Building a Blog
Previously in Building a Blog: Insert Data in MongoDB with Spring Boot The proof of concept worked like a charm. Now, I need to create the basis by adding functionality to the backend. Today, I’ll start with creating a blog post and see what challenges lie ahead on the road. So, before I start implementing…
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…