mysql异常 ### Cause: java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp
数据库出现这种问题的时候,有多种情况。

还有方法就是网上说的别的方法,就是在数据库jdbcurl上加上参数:zeroDateTimeBehavior=convertToNull,这样:jdbc:mysql://localhost:3306/testdb?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true

还有就是改变数据库模式:http://www.itnose.net/detail/6471356.html