Install Google Cloud CLI

In this tutorial, I will show you how to install Google Cloud CLI to work with the Google Cloud Platform! First, you can download the Google Cloud CLI at https://cloud.google.com/sdk/docs/install. Depending on the operating system you are using, please download the installation file accordingly! I… Read More

An introduction to GraphQL

When working with RESTful APIs, for a data object, we often have to expose many different request URLs. For example, if you are working with a student information management application, to provide student information through RESTful APIs, we may have to expose some of the… Read More

Record class in Java

In Java, the concept of immutable refers to classes whose objects do not change information after they are instantiated. Normally, to declare an immutable class, we would: Declare this class as final so that no class can extend from it. Declare the fields of that… Read More

Using Thymeleaf in Jakarta EE Servlet

In this tutorial, I show you how to integrate Thymeleaf with Jakarta EE Servlet to replace using JSP in Jakarta EE Servlet applications. First, I will create a new Jakarta EE Servlet Maven project as an example: Thymeleaf dependency is as follows:

I will… Read More