时间: 2016/2/29
遇到的困难: 数据库配置的mysql和java(Date)不一致,出现下面错误
1 Date date = new Date(); 2 SimpleDateFormat sdformat = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss");//24小时制 3 String LgTime = sdformat.format(date); 4 SimpleDateFormat sp = new SimpleDateFormat("yyyy-MM-dd-hh-mm-ss"); 5 Date dt = sp.parse(LgTime);
时间: 2016/04/17
遇到问题,java.sql.Date 和mysql timestamp不匹配,并出现Value ‘0000-00-00‘ can not be represented as java.sql.Timestamp 问题
策略:
修改链接属性中的Url:
加上这条 ?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
整体上为:
1 <property name="connection.url">jdbc:mysql://localhost:3306/hbutoj?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull </property>
结果: 解决!
时间: 2024-11-13 19:27:17