Stream API – Java advanced (OCP)
The Java Stream API allows to create pipelines of chained methods to produce a result. It exists since Java 8.…
A software engineer's journey
The Java Stream API allows to create pipelines of chained methods to produce a result. It exists since Java 8.…
In a previous article I covered Array and ArrayList. Here, I’m going through other data structures in Java and some…
This post covers Java security related topics as presented at Oracle University Online (Java SE 11 training) and as required…
Java provides built-in ready-to-use annotations as well as the possibility to create one’s own annotations. Annotations allow to add metadata…
Every Java program running has at least one thread, “main”, automatically created by the JVM. Each thread is represented by…
JDBC is a database neutral Java API in the java.sql package that allows connectivity and operations on databases. JDBC drivers…
Possibility to organize a projects in modules appeared in Java 9. In this post, we’ll have a look at differences…
Functional Programming (FP) is a programming paradigm, as OOP is. Java can make use of both. FP relies on Functions.…