Java
-

Writing a Hadoop MapReduce task in Java
Although Hadoop Framework itself is created with Java the MapReduce jobs can be written in many different languages. In this…
Read More » -

Creating Code Coverage Reports for Unit And Integration Tests with The JaCoCo Maven Plugin
When I started using Java 7, I noticed right away that the Cobertura Maven plugin doesn’t support it. This was…
Read More » -

From inside the code: Camel Routing Engine Part I
So I’ve recently re-kindled my interest in how Apache Camel works. Camel is such a powerful integration tool and is…
Read More » -

Optional in Java 8 cheat sheet
java.util.Optional<T> in Java 8 is a poor cousin of scala.Option[T] and Data.Maybe in Haskell. But this doesn’t mean it’s not…
Read More » -

50 Servlet Interview Questions and Answers
Servlets are very important topic of Java EE and all of the web applications framework such as Spring and Struts…
Read More » -

Simple and lightweight pool implementation
Object pools are containers which contain a specified amount of objects. When an object is taken from the pool, it…
Read More » -

Async Servlet Feature of Servlet 3
Before we jump into understanding what Async Servlet is, let’s try to understand why do we need it. Let’s say…
Read More » -

5 Things You Didn’t Know About Synchronization in Java and Scala
Practically all server applications require some sort of synchronization between multiple threads. Most of the synchronization work is done for…
Read More » -

Servlet Upload File and Download File Example
File Upload and Download and common tasks in a java web application. Since I have written a lot about java…
Read More »




