【DbUtils】java.sql.SQLException: Type 'NEWDATE' is not supported

このエラーはjava.util.Date型のプロパティに sql関数 date() をマッピングしようとした時に発生します。
date関数は、日付のみを返すためにマッピングに失敗します。
日付のみ扱う場合でも timestamp() 関数を使用しましょう。

This error occurs when you try to map the sql function date() result to a java.util.Date class of property.
Because the date() function returns only the date part.
You should use the timestamp() function even if you use only date part.