java连接Mysql数据库

问题

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

解决方案

在数据库连接url后加zeroDateTimeBehavior=convertToNull
示例如下:

jdbc:mysql://10.149.11.218:8066/orders?characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
 注意&转义的问题,在xml中写要用& 在properties中可以直接使用&