Core Java
-
Top 5 Reasons for Not Using JavaDoc in the Next Project
JavaDoc is an absolutely must for the development of frameworks and libraries which provide a public interface for others, e.g.…
Read More » -
Odd practices in Java
Overview There are a number of practices in Java which oddly baffle me. Here are but a few. Using -Xmx…
Read More » -
Tracking excessive garbage collection in Hotspot JVM
Quite frequently due to memory leaks or other memory problems applications freeze leaving only the garbage collector (GC) process running…
Read More » -
Java Thread deadlock – Case Study
This article will describe the complete root cause analysis of a recent Java deadlock problem observed from a Weblogic 11g…
Read More » -
JavaOne 2012 – 2400 hours to go! Some recommendations
As you might have seen the JavaOne 2012 Content Catalog is online. The Program Committee had some very intense weeks…
Read More » -
java.lang.NoClassDefFoundError: How to resolve – Part 2
This article is part 2 of our NoClassDefFoundError troubleshooting series. Take a look at part 1. It will focus and…
Read More » -
Just in Time Compiler (JIT) in Hotspot
The Just In Time Compiler (JIT) concept and more generally adaptive optimization is well known concept in many languages besides…
Read More » -
A Birds’s Eye View of Maven
One of the things that we do on a daily basis is use Maven to build our projects by issuing…
Read More » -
java.lang.NoClassDefFoundError: How to resolve – Part 1
Exception in thread ‘main’ java.lang.NoClassDefFoundError is one of the common and difficult problems that you can face when developing Java…
Read More »