当前位置:网站首页>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 ;
边栏推荐
- [GUET-CTF2019]虚假的压缩包
- Gslx680 touch screen driver source code analysis (gslx680. C)
- 解决could not find or load the Qt platform plugin “xcb“in ““.
- Docker compose start redis cluster
- Music | cat and mouse -- classic not only plot
- gslx680触摸屏驱动源码码分析(gslX680.c)
- 微信小程序中的路由跳转
- Simple example of ros2 planning system plansys2
- Leetcode-226. Invert Binary Tree
- @component(““)
猜你喜欢

1090: integer power (multi instance test)
![[ANSYS] learning experience of APDL finite element analysis](/img/bc/dc0742c308816553a80d50d1a990e3.jpg)
[ANSYS] learning experience of APDL finite element analysis

@component(““)

面试结束后,被面试官在朋友圈吐槽了......
![[UTCTF2020]file header](/img/e3/818e2d531a06ab90de189055f634ad.png)
[UTCTF2020]file header
![[Linux] process control and parent-child processes](/img/4c/89f87ee97f0f8e9033b9f0ef46a80d.png)
[Linux] process control and parent-child processes

记一个并发规则验证实现

【斯坦福计网CS144项目】Lab3: TCPSender

MIPS uclibc cross compile ffmpeg, support g711a encoding and decoding

URP - shaders and materials - simple lit
随机推荐
Live online system source code, using valueanimator to achieve view zoom in and out animation effect
Idea add class annotation template and method template
身边35岁程序员如何建立起技术护城河?
【经验分享】如何为visio扩展云服务图标
JSON introduction and JS parsing JSON
buuctf misc USB
【数学笔记】弧度
抽丝剥茧C语言(高阶)数据的储存+练习
【Unity】物体做圆周运动的几个思路
4、 High performance go language release optimization and landing practice youth training camp notes
[semantic segmentation] - multi-scale attention
Six methods of flattening arrays with JS
智联+影音,AITO问界M7想干翻的不止理想One
测试周期被压缩?教你9个方法去应对
面试结束后,被面试官在朋友圈吐槽了......
Outsourcing for three years, abandoned
面试官:你都了解哪些开发模型?
Why is the row of SQL_ The ranking returned by number is 1
解决could not find or load the Qt platform plugin “xcb“in ““.
抽絲剝繭C語言(高階)指針的進階