-
Getting the "Could not find an adaptor for class Foo" Mesage in Tapestry? You probably forgot to make your class Serializable. A simple description of a possible problematic situation follows: Suppose you have some simple class, like so: public class MyItem { private String itemname; public String …
Read More -
People who have read my last post are now probably removing the Date classes from their beans, replacing the code with things as new Long(new Date.getTime()) and such. This is also what I started doing, until a collegue of mine pointed out that the TypeHandler I wrote last saturday could also do the trick. This would …
Read More -
I am using Ibatis and PostgreSQL for this great project, www.bestlaps.com. However, we've recently ran into a strange problem where we store a java.util.Date into a postgress TIMEZONE column, which works fine. However, when you want to retreive it, Ibatis returns a "StringIndexOutofBoundsException" at …
Read More