Error setting a property: IllegalArgumentException http://old.nabble.com/Error-setting-a-property:-IllegalArgumentException-td14671165.html

This usually occurs when you are trying to stuff a DB null-value into a primitive Java field. You can either:

- change DB data

- change primitive type into wrapper, i.e. int -> Integer

- use the magic nullValue attribute, personally I don’t like this one