Java
-
Java Generics Quick Tutorial
Generics is a Java feature that was introduced with Java SE 5.0 and, few years after its release, I swear…
Read More » -
Erlang vs Java memory architecture
I read a really, really interesting article on memory management strategies for the Erlang VM. It was written as a…
Read More » -
Spring MVC3 Hibernate CRUD Sample Application
To learn any web framework starting with a HelloWorld application is a good idea. Once we get familiarity with the…
Read More » -
Official Java 7 for Mac OS X – Status
Hopefully, by now, everyone knows that Apple joined the OpenJDK project last year. What does that mean? Apple will contribute…
Read More » -
A glimpse at Java 7 MethodHandle and its usage
Due to Java’s Reflection API we have been able to inspect and alter program execution at runtime. In particular, we…
Read More » -
Understanding and Extending Java ClassLoader
The Java ClassLoader is one of the crucial but rarely used components of Java in Project Development. Personally I have…
Read More » -
Java JSON processing with Jackson
JSON (Javascript Object Notation) is becoming a very popular data exchange format. While developing Web applications using Javascript frameworks like…
Read More » -
Doclava: Custom Javadoc Doclet from Google
Doclava is a custom Javadoc Doclet from Google, used by Google Guice (see their slight cooler Javadocs). Doclava uses JSilver as…
Read More » -
Servlet 3.0 Async Processing for Tenfold Increase in Server Throughput
Servlets are the main component for handling server side logic in Java and the new 3.0 specification introduces some very…
Read More »