MySQL连接报错No suitable driver found

之前以为是没有加载驱动,于是添加了

Class.forName("com.mysql.cj.jdbc.Driver");

发现还是报错,又看了一遍报错代码:No suitable driver found for localhost:3306/upload_file

原来是url写错了,没有加前缀    jdbc:mysql://    

附完整url,后缀参数记得也加上

jdbc:mysql://localhost:3306/upload_file?&useSSL=false&serverTimezone=UTC
原文地址:https://www.cnblogs.com/Arisf/p/15530857.html