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
 
问题探究:
   数据表中有记录的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.sql.Date 将其视为 不合法的值 格式不正确
 
问题处理办法:
   网上办法:
       给jdbc   url加上   zeroDateTimeBehavior参数:
       datasource.url=jdbc:mysql://localhost:3306/pe?         useUnicode=true&characterEncoding=gbk&zeroDateTimeBehavior=convertToNull
 
不知道为什么我这么做的时候hibernate的配置文件将无法被解析,所以我采用下面的方法处理了此问题
      其一:将time的默认值设为当前时间,当然也可以是其他事件反正比0大,我是这么想的,你使用此系统时间一般都在当前开发时间之后
      其二:创建数据表时插入一个预设值~~~,建议使用数据库时尽可能的都设置预设置,可以减少很多不必要的麻烦,特别是对初学者而言
 
   

你可能感兴趣的:(Value '0000-00-00' can not be represented as java.sql.Date错误修改)