Configure JDK in Jenkins

To be able to build Java projects in Jenkins, the first thing we need to do that is: configure the JDK information. In this tutorial, I will guide you all how to configure JDK in Jenkins. First, just login into your Jenkins with the admin account,… Read More

Static keyword in Java

In Java, variables, which are declared with the static keyword, belong to the class, not to the instance of the class. This means that we do not need to initialize objects to use variables that are declared with the static keyword in those classes. For… Read More