Java
-
Drools decision tables with Camel and Spring
As I’ve shown it in my previous post JBoss Drools are a very useful rules engine. The only problem is…
Read More » -
Let us write a document style Web Service
You might be aware that there are mainly four different styles of web services we can make use of. They…
Read More » -
JDK 8 Javadoc Tweaked For Methods Listings
Since it’s beginning, Javadoc output has been largely static HTML with navigation links and simple stylesheet styling of its appearance.…
Read More » -
Arrays.sort versus Arrays.parallelSort
We all have used Arrays.sort to sort objects and primitive arrays. This API used merge sort OR Tim Sort underneath…
Read More » -
Spring MVC – Easy REST-Based JSON Services with @ResponseBody
Spring 3 makes JSON REST services really easy. This tutorial will show you how in just a few steps. You…
Read More » -
MOXy’s Object Graphs & Dynamic JAXB
JAXB (JSR-222) makes it easy for you to convert instances of your domain classes to/from XML. The EclipseLink MOXy implementation…
Read More » -
Introducing EclipseLink JPA-RS
In a previous series of posts I covered how to create a JAX-RS service that leveraged JPA for the persistence…
Read More » -
Java EE CDI ConversationScoped example
In this tutorial we shall show you how to create and use a ConversationScoped Bean in a web application. In…
Read More » -
On Java 8’s introduction of Optional
I had recently discovered the JDK 8′s addition of the Optional type. The Optional type is a way to avoid…
Read More »