zoukankan      html  css  js  c++  java
  • java.sql.SQLException: Zero date value prohibited

    今天使用mybatis出现了异常

    java.sql.SQLException: Zero date value prohibited

    查了下原因

    mysql文档上写着

    Datetimes with all-zero components (0000-00-00 ...): These values cannot be represented reliably in Java. Connector/J 3.0.x always converted them to NULL when being read from a ResultSet.

    Connector/J 3.1 throws an exception by default when these values are encountered, as this is the most correct behavior according to the JDBC and SQL standards.

    This behavior can be modified using the zeroDateTimeBehavior configuration property. The permissible values are:

    • exception (the default), which throws an SQLException with an SQLState of S1009.
    • convertToNull, which returns NULL instead of the date.
    • round, which rounds the date to the nearest closest value which is 0001-01-01.

    zeroDateTimeBehavior默认为exception,会抛出一个SQLException异常

    解决的方法:

      在jdbcUrl中设置zeroDateTimeBehavior=convertToNull

    如:

    spring.datasource.url=jdbc:mysql://localhost:3306/mrbird?serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=convertToNull

    问题解决

  • 相关阅读:
    If选择结构
    三元运算符
    顺序结构
    键盘输入使用
    逻辑运算符
    关系运算符
    自增自减运算符
    《黑客与画家》阅读笔记1
    周总结1
    2020年秋季个人阅读计划
  • 原文地址:https://www.cnblogs.com/baby123/p/10880531.html
Copyright © 2011-2022 走看看