Using Lambda Expression to foreach a List object in Java

In this tutorial, I will show you all how using Lambda Expression to foreach a List object in Java. OK, let’s get started! Usually from Java 7 and earlier, whenever you want to print out elements in a List object, for example:

We usually… Read More

Using properties in Spring with @Value annotation

In this tutorial, I would like to introduce to you all how to use properties in Spring with @Value annotation. First of all, we need a Maven project for example: I will use Java 17 for this example:

Spring framework dependency:

HelloWorld class:… Read More

Install MongoDB on macOS

In this tutorial, I will show you all how we can install MongoDB on macOS. First of all, we need to download the MongoDB binary file. To do that, you can go to the download page of MongoDB at https://www.mongodb.com/download-center/community and choose the latest version… Read More