Java
-
Neo4j Java REST Binding – Part 2 (Batching)
In Part 1, we talked about setting up a connection to the Neo4j Server using the Java REST Binding. Let’s…
Read More » -
Asynchronous retry pattern
When you have a piece of code that often fails and must be retried, this Java 7/8 library provides rich…
Read More » -
File Upload Example in Servlet and JSP
Uploading File to server using Servlet and JSP is a common task in Java web application. Before coding your Servlet…
Read More » -
ADF: URL Task Flow Call with HTTP POST Method
As we know a bounded task flow can be invoked by some URL either directly from a browser or from…
Read More » -
A Simple Plugin System for Web Applications
We need to make multiple web-based projects with a lot of shared functionality. For that, some sort of a plugin…
Read More » -
Observer Design Pattern in Java – Example Tutorial
Observer pattern is one of the behavioral design pattern. Observer design pattern is useful when you are interested in the…
Read More » -
Custom Deserializer in Jackson and validation
tl;dr: it is important to add input validation to custom json deserializers in Jackson. In RHQ we make use of…
Read More » -
Servlet 3.0 Overview
Servlet 3.0 – has a bunch of ground breaking features that will ultimately change how developers will code and write…
Read More » -
Transactional caching for Camel with Infinispan
Some time ago I created a Redis connector for Camel. Redis is awesome key-value store (and a lot more) but…
Read More »