Data truncation: Incorrect datetime value: '' for column 'examDate' at row 1解决方案

In a recent project commissioning, the emergence of this problem:

Caused by: com.mysql.jdbc.MysqlDataTruncation: Data truncation: Incorrect datetime value: '' for column 'examDate' at row 1
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2926)
    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1571)
    at com.mysql.jdbc.ServerPreparedStatement.serverExecute(ServerPreparedStatement.java:1124)
    at com.mysql.jdbc.ServerPreparedStatement.executeInternal(ServerPreparedStatement.java:676)
    at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1166)
    at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1082)
    at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1067)
    at org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.executeUpdate(ResultSetReturnImpl.java:187)
    ... 99 more

In fact, this is your mysql driver package version is too low, I use the mysql-connector-java-3.1.12-bin.jar, version too old to cause a problem;

Solution: change a little higher version, such as mysql-connector-java-5.1.47-bin.jar, in lib package will replace the low version, and then restart the server on it!

Guess you like

Origin blog.csdn.net/qq_37084904/article/details/90340952