Patterns
Nov 13 2011
Managing Complex Mobile Transactions - An Android Implementation
A colleague of mine, Jack Cox, wrote an article recently about managing complex mobile transactions. The article is written with an iOS slant but I found it very interesting and wondered if the paradigm could be implemented in Android and whether it could be effective. After sitting down and doing some brain storming, I realized the pattern lent itself very well to Android.
Jul 14 2010
A Persistence Pattern Using ThreadLocal And EJB Interceptors
Preface:
One of the traits of a well-designed application is the efficient handling of crosscutting concerns. By efficient I mean the application architecture/framework to handle bulk of the crosscutting concerns (such as security, transaction management, logging etc.) and let the individual services concentrate on the business logic. In this blog entry, I discuss one such cross cutting concern and a way to handle it at the framework level.