假如你在使用 springboot,你想体验升级后的 mysql8.0 以上版本数据库,就需要修改对应的驱动版本,且在 application.yml 配置文件中,配置连接数据库的 url 时,加上 useSSL=false 和 serverTimezone=GMT%2B8。格式如下:

    1. spring
    2. datasource
    3. driver-class-name: com.mysql.cj.jdbc.Driver
    4. urljdbc:mysql://localhost:3306/your_db_name?serverTimezone=GMT%2B8&useSSL=false

    否则会报如下错误:
    javax.net.ssl.SSLException: closing inbound before receiving peer's close_notify

    请同时在 url 后面加上:&serverTimezone=GMT%2B8,否则可能还会出现出现 The server time zone value ‘?й???’ is unrecognized 错误:
    image.png