Java
-
Java EE 7 is final. Thoughts, Insights and further Pointers.
It took us a little less than three years to get the next Java EE version out the door. On…
Read More » -
Mapping enums done right with @Convert in JPA 2.1
If you ever worked with Java enums in JPA you are definitely aware of their limitations and traps. Using enum…
Read More » -
A good, lazy way to write tests
Testing. I’ve been thinking a lot about testing recently. As part of code reviews I’ve done for various projects, I’ve…
Read More » -
Java File Merging Goes Semantic
Talk to any programmer and ask him how a merge should be: “it should understand the code, parse it, and…
Read More » -
JVM Performance Magic Tricks
HotSpot, the JVM we all know and love, is the brain in which our Java and Scala juices flow. Over…
Read More » -
Java EE CDI dependency disambiguation example
In this tutorial we shall show you how to avoid dependency disambiguation in CDI beans. In CDI we can achieve…
Read More » -
Design Patterns: Builder
Sometimes there is a need to create a complex object in application. The one solution for this is a Factory…
Read More » -
Spring Data Solr Tutorial: Adding Custom Methods to All Repositories
If we are using Spring Data Solr in a real life software project, the odds are that sooner or later…
Read More » -
Factory Design Pattern – An Effective Approach
As you know the Factory Method Pattern or popularly known as the Factory Design Pattern is one the design patterns…
Read More »