-
Enterprise Java
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 » -
Core Java
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 » -
Core Java
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 » -
Enterprise Java
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 » -
Core Java
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 » -
Software Development
Design Patterns after Design is Done
Design Patterns are a useful tool when you are designing a system, an effective shorthand for communicating and sharing design…
Read More » -
Career
When To Leave Your Programming Job
I am often approached by programmers that are thinking about leaving their job but want to discuss to see if…
Read More » -
Core Java
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 » -
Groovy
How to keep session in HttpBuilder with cookies
In my real-world scenario I have a REST service for AJAX purposes. It renders data series for graphs. I want…
Read More »