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
問題描述, 在java應用程序中,數據表中有記錄的time字段(屬性為timestamp)其值為:“0000-00-00 00:00:00”
程序使用select 語句從中取數據時出現以下異常:
java.sql.SQLException:Value '0000-00-00' can not be represented as java.sql.Date
這是因為 “0000-00-00 00:00:00”在mysql中是作為一個特殊值存在的,但是在Java中, java.sql.Date 會被視為 不合法的值,被JVM認為格式不正確。
解決辦法:
在jdbc的url加上 zeroDateTimeBehavior參數:
datasource.url=jdbc:mysql://localhost:3306/pe?useUnicode=true&characterEncoding=gbk &zeroDateTimeBehavior=convertToNull
對於值為0000-00-00 00:00:00(默認值)的紀錄,根據不同的配置,會返回不同的結果:
不配置:默認返回異常
zeroDateTimeBehavior=round 0001-01-01 00:00:00.0
zeroDateTimeBehavior=convertToNull null
但 這樣有可能會報新的Exception:
The reference to entity "characterEncoding" must end with the ';' delimiter
其原因可能是在Properties文件或者xml文件中忘記進行特殊符號的轉譯了,
jdbc:mysql://192.168.1.155:3306/diandi?useUnicode=true&characterEncoding=UTF-8 & zeroDateTimeBehavior=convertToNull
需要改為:
jdbc:mysql://192.168.1.155:3306/diandi?useUnicode=true&characterEncoding=UTF-8 & zeroDateTimeBehavior=convertToNull
有以下幾類字符要進行轉義替換:
< |
< |
小於號 |
> |
> |
大於號 |
& |
& |
和 |
' |
' |
單引號 |
" |
" |
雙引號 |