Java
-
Three-State Booleans in Java
Every now and then, I miss SQL’s three-valued BOOLEAN semantics in Java. In SQL, we have: TRUE FALSE UNKNOWN (also…
Read More » -
Common Java Myths
These are questions which are likely to be too advanced to ask in any interview as they may just put…
Read More » -
The effects of programming with Java 8 Streams on algorithm performance
Multi-paradigm programming with Java has been possible for many years, with its support for a mix of service oriented, object…
Read More » -
Java 8 Friday: Let’s Deprecate Those Legacy Libs
At Data Geekery, we love Java. And as we’re really into jOOQ’s fluent API and query DSL, we’re absolutely thrilled…
Read More » -
Java EE7 and Maven project for newbies – part 2 – defining a simple war for our application
Resuming from the first part Part #1 We have just defined, our parent pom. A special type of pom that…
Read More » -
Java 8 : Functional Interface Example
To Support lambda expressions in Java 8, they introduced Functional Interfaces. An interface which has Single Abstract Method can be…
Read More » -
Java Tutorial Through Katas: Tennis Game (Easy)
A programming kata is an exercise which helps a programmer hone his skills through practice and repetition. This article is…
Read More » -
Load inheritance tree into List by Spring
I noticed interesting Spring feature. One of my colleagues used it for loading whole inheritance tree of Spring beans into…
Read More » -
Akka Java for large-scale event processing
We are designing a large scale distributed event-driven system for real-time data replication across transactional databases. The data(messages) from the source system…
Read More »