Cause: java.sql.SQLException: Value ‘0000-00-00 00:00:00’ can not be represented as java.sql.Timestamp

这个错误的原因是:
Java的时间戳Timestamp类无法表示***0000-00-00 00:00:00***这个时间;

由于计算机的时间是从格林威治时间 1970年01月01日00时00分00秒开始计算的,所以该类中的有关方法也是以***1970-01-01 00:00:00***作为起始时间。

故数据库的字段中不能存储***1970-01-01 00:00:00***。