Java
-
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 » -
Project Student: Webservice Client with Jersey
This is part of Project Student. Other posts are Webservice Client with Jersey, Business Layer and Persistence with Spring Data.…
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 » -
Skinning in Java8 (JavaFX8)
There has been some changes in JavaFX8 regarding skinning, the most relevants of which are the new CSS API that…
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 » -
Set WildFly binding address and shutdown using CLI
It’s very easy to bind WildFly on a hostname/IP just using command line parameters. I have a simple GNU/Linux box…
Read More »