Core Java
-
A deeper look into the Java 8 Date and Time API
Within this post we will have a deeper look into the new Date/Time API we get with Java 8 (…
Read More » -
Externalizable in java
Before understanding Externalizable interface, you need to have idea about Serialization.You can read more about Serialization at Serialization in java.…
Read More » -
Design Pattern: Immutable Embedded Builder
Last week I wrote about what makes a pattern anti-pattern. This week I present a design pattern… or wait… perhaps…
Read More » -
Java 8: Sorting values in collections
Having realised that Java 8 is due for its GA release within the next few weeks I thought it was…
Read More » -
Getting started with Mocking in Java using Mockito
We all write unit tests but the challenge we face at times is that the unit under test might be…
Read More » -
Java 8 Friday Goodies: Local Transaction Scope
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 8: Group by with collections
In my continued reading of Venkat Subramaniam’s ‘Functional Programming in Java‘ I’ve reached the part of the book where the…
Read More » -
Design Patterns: Pattern or Anti-Pattern, that is the question
I have recently encountered the wiki page Anti-pattern that has an exhaustive list of anti patterns. Some of them were…
Read More » -
Use Java annotation deprecated the right way
There is hardly anything more infuriating that seeing a method @Deprecated without a proper documentation. I feel lost. Should I…
Read More »