Value '0000-00-00' can not be represented as java.sql.Timestamp

Value '0000-00-00' can not be represented as java.sql.Timestamp
关键字: 数据库字段为datetime类型时默认值为:0000-00-00 00:00:00
mysql
数据库字段为datetime类型时默认值为:0000-00-00 00:00:00
查询时异常
java.sql.SQLException:Value '0000-00-00' can not be represented as java.sql.Date
解决方法在url后添加 &zeroDateTimeBehavior=convertToNull
datasource.url=jdbc:mysql://localhost:3306/pe?useUnicode=true&characterEncoding=gbk&zeroDateTimeBehavior=convertToNull

注意 &->&

你可能感兴趣的:(java,Hibernate,mysql)