当前位置:网站首页>The configuration that needs to be modified when switching between high and low versions of MySQL 5-8 (take aicode as an example here)
The configuration that needs to be modified when switching between high and low versions of MySQL 5-8 (take aicode as an example here)
2022-07-07 07:42:00 【if you never leave me, i will be with you till death do us apart】
An error is reported due to the conflict between the version of the database at the initial startup :
WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
My local environment is 8.0 Of MYsql Therefore, the configuration of the database is modified to 8.0
<mysql-connector-java.version>8.0.21</mysql-connector-java.version>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql-connector-java.version}</version>
</dependency>
perhaps
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.21</version>
</dependency>
After the modification
Restart error :
Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class iscom.mysql.cj.jdbc.Driver’. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.
hold com.mysql.jdbc.Driver modify com.mysql.cj.jdbc.Driver
We make the following changes
Join this
driver-class-name: com.mysql.cj.jdbc.Driver

Could not create connection to database server. Attempted reconnect 3 times. Giving up.
1、 Will all driver-class-name Values are from com.mysql.jdbc.Driver It is amended as follows com.mysql.cj.jdbc.Driver( It said that )
2、 stay url Add a time zone parameter after the parameter of :&serverTimezone=UTC
3、 modify url The value in the connection parameter is updated to :zeroDateTimeBehavior=CONVERT_TO_NULL
spring:
profiles: dev
datasource:
#url: jdbc:mysql://localhost:3306/easycode?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull
url: jdbc:mysql://localhost:3306/easycode?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=UTC
username: root
password: root
filters: log4j,wall,mergeStat
driver-class-name: com.mysql.cj.jdbc.Driver
Annotated is the previous ; New is modified ;
I hope I can help you ;
边栏推荐
- Gslx680 touch screen driver source code analysis (gslx680. C)
- leetcode:105. 从前序与中序遍历序列构造二叉树
- About some details of final, I have something to say - learn about final CSDN creation clock out from the memory model
- Wx is used in wechat applet Showtoast() for interface interaction
- My ideal software tester development status
- 知识点滴 - 关于苹果认证MFI
- KBU1510-ASEMI电源专用15A整流桥KBU1510
- Tencent's one-day life
- Docker compose start redis cluster
- ../ And/
猜你喜欢

leetcode:105. 从前序与中序遍历序列构造二叉树

Wechat applet full stack development practice Chapter 3 Introduction and use of APIs commonly used in wechat applet development -- 3.9 introduction to network interface (IX) extending the request3 met

《动手学深度学习》(四) -- 卷积神经网络 CNN

为什么要了解现货黄金走势?

Convolutional neural network -- understanding of pooling

Kbu1510-asemi power supply special 15A rectifier bridge kbu1510

Make a bat file for cleaning system garbage

记一个并发规则验证实现

How to * * labelimg

【leetcode】1020. Number of enclaves
随机推荐
95后CV工程师晒出工资单,狠补了这个,真香...
idea添加类注释模板和方法模板
【斯坦福计网CS144项目】Lab3: TCPSender
[Linux] process control and parent-child processes
[performance pressure test] how to do a good job of performance pressure test?
How to reduce inventory with high concurrency on the Internet
【Unity】物体做圆周运动的几个思路
What is the difference between TCP and UDP?
Tianqing sends instructions to bypass the secondary verification
通信设备商,到底有哪些岗位?
ROS2规划系统plansys2简单的例子
Music | cat and mouse -- classic not only plot
Interviewer: what development models do you know?
Deep learning Flower Book + machine learning watermelon book electronic version I found
Tencent's one-day life
Six methods of flattening arrays with JS
知识点滴 - 关于苹果认证MFI
pytorch 参数初始化
Is the test cycle compressed? Teach you 9 ways to deal with it
Leetcode-206. Reverse Linked List