Core Java
-

Advanced Java generics: retreiving generic type arguments
After their introduction in the JDK5, Java generics quickly became an integral element of many Java programs. However, as easy…
Read More » -

Java 8 parameter name at runtime
Java 8 will be introducing an easier way to discover the parameter names of methods and constructors. Prior to Java…
Read More » -

The infamous sun.misc.Unsafe explained
The biggest competitor to the Java virtual machine might be Microsoft’s CLR that hosts languages such as C#. The CLR…
Read More » -

Subtyping in Java generics
Generic types introduce a new spectrum of type safety to Java program. At the same type, generic types can be…
Read More » -

RMI enforcing Full GC to run hourly
During all the troubleshooting exercises I have carried out in my career, I have picked up a feeling that the…
Read More » -

Object-based micro-locking for concurrent applications by using Guava
One of the presumably most annoying problems with writing concurrent Java applications is the handling of resources that are shared…
Read More » -

Parameterized JUnit tests with JUnitParams
Parameterized unit tests are used to to test the same code under different conditions. Thanks to parameterized unit tests we…
Read More » -

cglib: The missing manual
The byte code instrumentation library cglib is a popular choice among many well-known Java frameworks such as Hibernate (not anymore)…
Read More » -

GitHub’s 10,000 most Popular Java Projects – Here are The Top Libraries They Use
As Java developers working with a language thatās both mature yet highly evolving, weāre faced with a constant dilemma whenever…
Read More »

