报错:
java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp
解决:
设置下jdbc连接:setConnectionProperties("zeroDateTimeBehavior=convertToNull");
原因:
mysql不支持 0时间的timpstamp。
报错:
java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp
解决:
设置下jdbc连接:setConnectionProperties("zeroDateTimeBehavior=convertToNull");
原因:
mysql不支持 0时间的timpstamp。