解决Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.j

解决:Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'.

异常:html

Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. mysql

整合spring boot项目过程当中出现的,用了最新的mysql 链接驱动spring

application.ymlsql

spring:
application:
name: test
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8
username: root
password: root

须要将 com.mysql.jdbc.Driver  改成  com.mysql.cj.jdbc.Driverapp

spring:
application:
name: test
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://127.0.0.1.61:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8    username: root    password: root
相关文章
相关标签/搜索