Java
-
Selenium Test Automation with Maven
Today i want to help you manage your Automated GUI Tests (Selenium) better. In the past i have seen many…
Read More » -
Developing RESTful Services using Apache CXF
Introduction As you already know there are two ways of developing a web service Simple Object Access Protocol (SOAP) Representational…
Read More » -
Lock Less Java Object Pool
It has been a while since I wrote anything, I have been busy with my new job that involves doing…
Read More » -
Lambdas: coming to a Java 8 near you!
What are Lambdas? A lambda expression is a type of anonymous function, that can be written inline within a method…
Read More » -
MapReduce Algorithms – Understanding Data Joins Part 1
In this post we continue with our series of implementing the algorithms found in the Data-Intensive Text Processing with MapReduce…
Read More » -
Printing Generated Assembly Code From The Hotspot JIT Compiler
Sometimes when profiling a Java application it is necessary to understand the assembly code generated by the Hotspot JIT compiler.…
Read More » -
Garbage Collection in Java (3)
This follows on from my previous two garbage collection blog posts: Overview of GC in Hotspot. Parallel Garbage Collectors. Concurrent…
Read More » -
Reducing memory usage with String.intern()
Every now and then you have a dying production application at hand. And you know you need to patch it…
Read More » -
Developing SOAP Web service using Apache CXF
In last post I walked through the steps for developing a simple RESTFull service using apache CXF. In this post…
Read More »