Core Java
-
Java 9 – The Ultimate Feature List
This post will be updated with new features targeted at the upcoming Java 9 release (last updated: 9/9/2014) The…
Read More » -
Getting Started with Gradle: Creating a Binary Distribution
After we have created a useful application, the odds are that we want to share it with other people. One…
Read More » -
OOP Alternative to Utility Classes
A utility class (aka helper class) is a “structure” that has only static methods and encapsulates no state. StringUtils, IOUtils,…
Read More » -
Mockito 101
Mockito is a mocking framework that lets you write beatiful tests with clean and simple API. It biases toward minimal…
Read More » -
JVM PermGen – where art thou?
This post covers some basics of JVM memory structure and quickly peeks into PermGen to find out where it has disappeared since advent…
Read More » -
Name of the class
In Java every class has a name. Classes are in packages and this lets us programmers work together avoiding name…
Read More » -
Typical Mistakes in Java Code
This page contains most typical mistakes I see in the Java code of people working with me. Static analysis (we’re…
Read More »