Questions Management – Core Category Service – Build API retrieving all categories using Spring WebFlux and Spring Data MongoDB Reactive

Check out the full series of Questions Management tutorial here. In the previous tutorial, we prepared all the necessary configurations to build the API retrieving all the categories in the MongoDB database: a document Category object containing information about a category, a CategoryRepository to manipulate with… Read More

Mathematical operators in Java

In Java, we have seven mathematical operators including: +: plus –: subtraction *: multiplication /: division %: modular division ++: double plus —: double subtraction It is easy for plus, subtraction, multiplication, division, and modular division, isn’t it? So, in this tutorial, I will focus… Read More

Questions Management – Frontend – Apply routing using RouterModule of Angular

I gave you an overview about routing in Angular. In this tutorial, we will apply it to our Questions Management application. First, I will create a new module called AppRoutingModule in the app-routing.module.ts file in the src/app directory: with the following content:

As you… Read More