当前位置: 首页 > article >正文

解决:Loading class `com.mysql.jdbc.Driver‘. This is deprecated

问题:Loading class `com.mysql.jdbc.Driver’. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver’. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

解决方式:

报错意思就是说com.mysql.jdbc.Driver这个驱动已经被弃用了,新的驱动为com.mysql.cj.jdbc.Driver,通常是自动注入的。

所以,我们只需要按照提示,将“com.mysql.jdbc.Driver”驱动改为“com.mysql.cj.jdbc.Driver”。

配置如下:

spring:
datasource:
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: com.mysql.cj.jdbc.Driver
username: xxx
password: xxx
url: jdbc:mysql://localhost:3306/xxxuseUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&useSSL=false&serverTimezone=Asia/Shanghai


http://www.kler.cn/a/509706.html

相关文章:

  • vscode 设置
  • SpringBoot项目打war包要点
  • 基于Python+Gurobi的库存分配问题建模求解
  • C++速览之智能指针
  • 第4章 Kafka核心API——Kafka客户端操作
  • 迅为RK3576开发板Android 多屏显示
  • 复健第二天之[MoeCTF 2022]baby_file
  • ASP.NET Core中 JWT 实现无感刷新Token
  • Python+Jenkins自动化测试持续集成
  • AI 编程工具—Cursor 对话模式详解 Chat、Composer 与 Normal/Agent 模式
  • Java并发10 - ForkJoin并发框架
  • 【开源免费】基于SpringBoot+Vue.JS宠物领养系统(JAVA毕业设计)
  • uni-app vue3 常用页面 组合式api方式
  • PyTorch深度学习实践【刘二大人】之卷积神经网络
  • 网络互联(软件路由器)实验
  • 如何禁用 PySpark 在运行时打印信息
  • Spring Cloud与Spring Boot的关系
  • 【AI论文】Diffusion模型的推理时缩放:超越降噪步骤的缩放策略
  • postman接口请求-post登陆接口+x-www-form-urlencoded
  • 【PyCharm】连接 Git
  • uniapp 地图(map)加载大量自定义坐标卡顿优化
  • 意图颠覆电影行业的视频生成模型:Runway的Gen系列
  • ubuntu 在mongodb启动的情况下无法进入shell
  • 【redis】键的全局命令
  • RabbitMQ--延迟队列
  • opencv3.4 ffmpeg3.4 arm-linux 交叉编译