Page 5
Introduction to Apache Maven
In the past, when Apache Maven was not available, if you worked with Java applications that used external libraries, you had to manually download those libraries and add them to the classpath so that your application could use them. Using Apache Maven, you will no… Read More
Video: Mastering the Switch statement in Java – Part 1
Video: Install OpenAPI Generator CLI and Generate Your First Server
Deque in Java
Interface Deque (short for Double-Ended Queue) in Java is an interface that defines a data structure that allows us to add or remove elements at the front or rear: This Deque interface extends from the Queue interface and it has 2 main implementations: ArrayQueue and… Read More
Switch statement in Java – Part 2
In the previous tutorial, I introduced you to the basic knowledge of the switch statement in Java. In this tutorial, I will talk more about the new features that Java supports from version 14 onwards! Switch from Java 14 When working with a switch statement,… Read More
Install and generate source code for OpenAPI specs using OpenAPI Generator CLI
After you define API specs using OpenAPI, to implement these APIs using the programming language you are working with, you can use the Open API Generator CLI tool at https://github.com/OpenAPITools/openapi-generator to generate source code for that language. All we have left to do is add… Read More
Install MongoDB and Mongo Express using Docker Compose
I have guided you on how to install the MongoDB server on Windows and macOS in previous tutorials. Using Docker Compose to install the MongoDB server will make everything much easier. In this tutorial, I will guide you on how to install the MongoDB server… Read More
Create new queue in ActiveMQ Artemis using Artemis Console
To create a new queue in ActiveMQ Artemis, you need to create a new address first. Create a new address To create an address, in the Artemis Console page, in the Artemis menu, click on the Addresses tab! The addresses you see in the image… Read More
Register and discover other services in Consul using Spring Cloud Consul
In the previous tutorial, I showed you how to register a service to Consul using the Consul API. If your application uses Java and Spring framework, you can also do this using Spring Cloud Consul. We can also discover information about other services using this… Read More


