Questions Management – Core Category Service – Build API deleting category 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 information we needed to create the category deletion API: a Category document object containing information about a category, a CategoryRepository to manipulate MongoDB, a CategoryController defines the… Read More

Enable and disable user shell in Ubuntu

To disable the user’s command line, you can run the following command:

At that point, the user will no longer be able to use the command line. To enable it, run the following command:

 

Overloaded methods in Java

Overloaded methods in Java are methods that have the same name but different the parameter list. In this tutorial, we will learn how to create and use the overloaded methods in Java. Some of the guidelines below for defining our overloaded methods are: Overloaded methods… Read More