Java
-
ArrayList vs LinkedList
I must confess the title of this post is a little bit catchy. I have recently read this blog post…
Read More » -
Gradle Command-Line Conveniences
In my post A First Look at Building Java with Gradle, I briefly mentioned using Gradle‘s “gradle tasks” command to…
Read More » -
Extending Guava caches to overflow to disk
Caching allows you to significantly speed up applications with only little effort. Two great cache implementations for the Java platform…
Read More » -
An Alternative Multi-Producer Approach
Recently on InfoQ, Aliaksei Papou posted an article on some of his experiments with high performance interchange of messages between…
Read More » -
The Logging Olympics – A Race Between Today’s Top 5 Java Logging Frameworks
Developers: Takipi tells you when new code breaks in production – Learn more Log4J vs SLF4J simple vs Logback vs…
Read More » -
Proxies done right with Guava’s AbstractInvocationHandler
Not too often but sometimes we are forced to write custom dynamic proxy class using java.lang.reflect.Proxy. There is really no…
Read More » -
Orika: Mapping JAXB Objects to Business/Domain Objects
This post looks at mapping JAXB objects to business domain objects with Orika. Earlier this month, I covered the same…
Read More » -
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 »