Install Docker on CentOS

I showed you how to install Docker on Ubuntu. Installing Docker on CentOS is much simpler, just open Terminal, then run the following command:

to install Docker. After installation is complete, please start Docker up with the following command:

To test the results,… Read More

Add Trusted Certificate Authority into CentOS

When working with networks that require security, if we request to sites that use HTTPS, we will often encounter issues related to the SSL certificate, my example is as follows:

To resolve this error, we need to download the certificate for that site and… Read More

Working with response in Javalin

We have learned how to handle a request in Javalin, in this tutorial, we will continue to learn how to work with the response in Javalin! I also created a Maven project as an example, as follows: Javalin and SLF4J Simple dependency are as follows:

Read More

Handle request in Javalin

I introduced you to Javalin, in this tutorial we will learn more about how we will handle requests in the Javalin framework! I also created a Maven project as an example: Javalin and SLF4J Simple dependency are as follows:

I also created a class… Read More