There are a number of problems with having a large number of records in memory. One way around this is to use direct memory, but this is too low level for most... Read all
One of the biggest promises java EE6 made, was to ease the use of dependency injection. They did, using CDI. CDI, which stands for Contexts and Dependency... Read all
i feel like writing some posts about cdi (contexts and dependency injection). so this is the first one of a series of x posts ( 0<x<10 ). i will not go... Read all
Sometimes you have tests where the fixtures can be recyled, instead of being recreated; but that's not all: sometimes, even the state reset we preach for Shared... Read all
A fundamental trait of modern software is that it does not live in isolation, especially in the realm of web applications, which can easily interact with... Read all
In this series we have seen two Web presentation patterns so far:Page Controller, also known as Action Controller, which responds to a specific HTTP request... Read all