Core Java
-
Using EasyMock or Mockito
I have been using EasyMock for most of time but recently I worked with a few people who were pretty…
Read More » -
Java threads: How many should I create
Introduction “How many threads should I create?”. Many years before one of my friends asked me the question, then I…
Read More » -
I/O Demystified
With all the hype on highly scalable server design and the rage behind nodejs I have been meaning to do some…
Read More » -
Creating a Java Dynamic Proxy
Java Dynamic proxy mechanism provides an interesting way to create proxy instances. The steps to create a dynamic proxy is…
Read More » -
Java: Mergesort using Fork/Join Framework
The objective of this entry is to show a simple example of a Fork/Join RecursiveAction, not to delve too much…
Read More » -
Java Thread at RUNNABLE state is not really running
Recently, I was doing an analysis/tuning on a Java application server installation in order to identify the bottlenecks and fix…
Read More » -
Exception: java lang AbstractMethodError
This java.lang.AbstractMethodError is usually thrown when we try to invoke the abstract method.Generally this error is identified at the compile…
Read More » -
Java Exception: java lang NoSuchMethodError
If you have a look at the error message java.lang.NoSuchMethodError you may understand that the Java Virtual Machine is trying…
Read More »