Questions Management – Core Question Service – Build the API for adding a new question using Spring WebFlux and Spring Data MongoDB Reactive

Check out the full series of Questions Management tutorial here. Before we go into building the first API for the Core Question Service, we need to prepare the following: First, we need to create a new QuestionRepository interface extends from the ReactiveMongoRepository interface to manipulate… Read More

DRY principle in programming

DRY principle (Don’t Repeat Yourself) is a principle that every programmer needs to understand and follow. In this tutorial, let’s learn about this principle. The DRY principle shows that if we are trying to write the same code in different places, instead of copying and pasting… Read More

Edit XML file using the DOM in Java

In this tutorial, I will guide you how to edit an XML file using the DOM through an example is to edit the XML file has the following content:

The information will be edited I will edit some things as follows: Correct student number… Read More