zoukankan      html  css  js  c++  java
  • spring boot连接mysql8.0

    今天spring boot的项目数据库从mysql5.7换到mysql8.0,遇到点问题,特此记录下来

    查看mysql的版本

    mysql> select version();
    +-----------+
    | version() |
    +-----------+
    | 8.0.12 |
    +-----------+

    修改mysql的依赖使用MySQL Connector/J

    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>8.0.12</version>
    </dependency>

    数据源配置

    # 数据源配置,请修改为实际配置
    spring.datasource.url=jdbc:mysql://localhost:3306/bim?serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useSSL=false&failOverReadOnly=false
    spring.datasource.username=bimengine
    spring.datasource.password=fgBQLZpgDaxH7xuu
    spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

    项目启动如果报错

    java.sql.SQLException: The connection property 'zeroDateTimeBehavior' acceptable values are: 'CONVERT_TO_NULL', 'EXCEPTION' or 'ROUND'. The value 'convertToNull' is not acceptable.

    修改数据源配置

    # 数据源配置,请修改为实际配置
    spring.datasource.url=jdbc:mysql://localhost:3306/bim?serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=CONVERT_TO_NULL&autoReconnect=true&useSSL=false&failOverReadOnly=false
    spring.datasource.username=bimengine
    spring.datasource.password=fgBQLZpgDaxH7xuu
    spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

    如果报错 

    java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowe

    连接数据库的url中,加上allowPublicKeyRetrieval=true参数

  • 相关阅读:
    顧客満足度調査
    GeoStTool.dll过滤图层
    GeoStTool.ini相关技术要点
    GeoStTool.dll与RasterServer通信
    hdu 1007 Quoit Design
    hdu 4325 Flowers
    hdu 2516 取石子游戏
    hdu 1006 Tick and Tick
    CodeForces 101A Homework
    ZOJ Problem Set 1879
  • 原文地址:https://www.cnblogs.com/baby123/p/11419957.html
Copyright © 2011-2022 走看看