java.sql.SQLException: Value ‘0000-00-00 00:00:00‘ can not be represented as java.sql.Timestamp异常
程序员文章站
2022-09-03 21:30:35
今天写SQL语句的时候发现一个sql异常,话不多说,上图!咱们先看他报的是什么.java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp翻译一下java.sql.sql异常:值“0000-00-00 00:00:00”不能表示为java.sql.Timestamp为什么不能表示为java.sql.Timestamp呢?经过本人多番查阅发现Java 中的时间是从...
今天写SQL语句的时候发现一个sql异常,话不多说,上图!
咱们先看他报的是什么.java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp
翻译一下
java.sql.sql异常:值“0000-00-00 00:00:00”不能表示为java.sql.Timestamp
为什么不能表示为java.sql.Timestamp呢?
经过本人多番查阅发现Java 中的时间是从 1970 年开始的。格林威治时间 1970年01月01日00时00分00秒(UTC+8北京时间1970年01月01日08时00分00秒),这个 '0000-00-00 00:00:00' 时间,Java 表示不了,所以就抛出了这个异常
知道了异常是什么导致的后就很好处理了
将配置文件中对mysql配置的url语句后面加上zeroDateTimeBehavior=convertToNull
有的同学不懂了,你加这句是什么意思呢?我来给大家解释一下
zeroDateTimeBehavior是为了指定MySql中的DateTime字段默认值查询时的处理方式;默认是抛出异常
加上后的效果图
ok!运行成功!
本文地址:https://blog.csdn.net/Lang_Ren_g/article/details/107312731
上一篇: 我坐过站了怎么办
下一篇: 逃跑皇帝是怎么来的?赵构到底做了什么
推荐阅读
-
解决:java.sql.SQLException:Value ‘0000-00-00‘ can not be represented as java.sql.Date
-
java.sql.SQLException: Value ‘0000-00-00 00:00:00‘ can not be represented as java.sql.Timestamp异常
-
FAQ(60):java.sql.SQLException: Value '0000-00-00' can not be represented as java.sql.Date
-
java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Tim 异常解决办法
-
mysql错误:Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp;的解决方法
-
FAQ(64):java.sql.SQLException: Value '0000-00-00' can not be represented as java.sql.Date
-
java.sql.SQLException: Value '0000-00-00' can not be represented as java.sql.Date(已解决)
-
java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp at
-
java.sql.SQLException: Value ‘0000-00-00 00:00:00’ can not be represented as java.sql.Timestamp
-
SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp