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

Learn about Predicate Functional Interface in Java

The Predicate interface is used primarily to filter a Stream object. Using the filter() method with the Predicate interface parameter will allow us to filter the items in the Stream object to satisfy some conditions. The content of this interface is as follows:

As… Read More