-
Recent Posts
Recent Comments
Archives
- December 2012
- November 2012
- August 2012
- August 2011
- March 2011
- February 2011
- September 2010
- July 2010
- April 2010
- January 2010
- November 2009
- September 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- May 2008
- April 2008
- December 2007
- September 2007
- August 2007
- July 2007
- February 2007
- March 2006
- September 2005
- July 2005
Categories
Meta
Category Archives: design
go-restful api design
I have been using JAX-RS for many REST-based service implementations in Java. As part of my journey into the Google Go programming language, I am exploring designs for such REST support using the standard net/http package in Go. JAX-RS provides … Continue reading
Using renderSnake to build the presentation layer in Spring-MVC
renderSnake is a open-source library for creating components that produce HTML using only Java. By defining Java classes for HTML components and pages you can exploit all the language features (e.g. inheritance, composition, type-checking) and IDE tooling (e.g. refactoring, unit-testing, … Continue reading
Tiny, single-purpose class: ResultToFunctionAdaptor
Every now and then I need a small piece of functionality that perfectly fits into a single, minimal-behavior thus single-purpose class. Continue reading
Helper classes considered bad OO
Too often developers put logic in so-called Helper classes. This practice of SPOD (Single Point of Definition) results in a higher level of reusability, so it seems. But in fact introducing these procedural structured behavioral methods impose a rigid structure. … Continue reading
Application Diagnoses Itself
How can I provide programs with self diagnostic behavior? How can I implement this in a way that has low impact on the way I write programs (or Java classes to be more specific). If programs could run such a … Continue reading
Don’ts
Another example of how negative publicity can have a big learning effect (if understood). From a new entry @ slashdot about Multi-links, I surfed to WebsitesThatSuck. The authors are committed to show the worst designs that live on the web. … Continue reading
Posted in design
Comments Off