java连接Mysql数据库问题
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中可以直接使用&
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Ting723!
