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

来源:互联网 发布:windows pro 编辑:程序博客网 时间:2024/05/22 09:23

     整合SSM的时候运行报了一个这样的警告:

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.


原因:


jdbc.driverClassName   = com.mysql.dbc.Driverjdbc.url      = jdbc:mysql://127.0.0.1:3306/why?useUnicode=true&characterEncoding=utf8&serverTimezone=GMTjdbc.username = rootjdbc.password = 123456
最新官方提示支持将com.mysql.jdbc.Driver  改为  com.mysql.cj.jdbc.Driver


jdbc_driverClassName=com.mysql.cj.jdbc.Driveritoo_jdbc_url=jdbc:mysql://localhost:3306/why?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTCitoo_jdbc_username=rootitoo_jdbc_password=123456

阅读全文
0 0
原创粉丝点击