码迷,mamicode.com
首页 > 数据库 > 详细

mysql解决Value ‘0000-00-00 00:00:00’ can not be represented as java.sql.Timestamp

时间:2016-11-21 18:52:42      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:null   div   color   类型   url   log   ref   rtt   har   

 

  同步发布:http://www.yuanrengu.com/index.php/mysqlsolvetimestamp.html

  在使用mysql时,如果数据库中的字段类型是timestamp,默认为0000-00-00,会发生异常:Value ‘0000-00-00 00:00:00’ can not be represented as java.sql.Timestamp.

    解决办法如下:

    给数据库的jdbc.url加上zeroDateTimeBehavior参数,如下:

jdbc.url=jdbc:mysql://localhost:3306/table?characterEncoding=UTF-8&zeroDateTimeBehavior=round

  zeroDateTimeBehavior参数有两种配置:

  • zeroDateTimeBehavior=round ,”0000-00-00“会默认转换为”0001-01-01 00:00:00”
  • zeroDateTimeBehavior=convertToNull,“0000-00-00“会转换为null

mysql解决Value ‘0000-00-00 00:00:00’ can not be represented as java.sql.Timestamp

标签:null   div   color   类型   url   log   ref   rtt   har   

原文地址:http://www.cnblogs.com/heyonggang/p/6086303.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!