Java
-
Expression Based PathTransitions in JavaFX
In JavaFX you are able to animate nodes along a path using PathTransition objects. PathTransitions use Shape objects to describe…
Read More » -
5 Tips for Unit Testing Threaded Code
Here’s a few tips on how take make testing your code for logical correctness (as opposed to multi-threaded correctness). I…
Read More » -
Java: Choosing the right Collection
Here is a quick guide for selecting the proper implementation of a Set , List , or Map in your application. The best general purpose or…
Read More » -
Common code violations in Java
At work, recently I did a code cleanup of an existing Java project. After that exercise, I could see a…
Read More » -
Apache Digester Example – Make Easy Configuration
Address Problem – Hard Coding , Need to create custom configuration for your application like struts configuration file to vary…
Read More » -
Java Memory Profiling Simplified
As a typical Java developer I never monitored the memory usage of my application apart from following typical best practices…
Read More » -
JBoss AS 7 classloading explained
This is a sample chapter taken from JBoss AS 7 Configuration Deployment and Administration book edited by Francesco Marchioni who…
Read More » -
Simple REST client in Java
Today most of the mobile applications that used to communicate to some server use REST services. These services are also…
Read More » -
Spring 3.1 Caching and @Cacheable
Caches have been around in the software world for long time. They’re one of those really useful things that once…
Read More »