Tomcat启动报错 No suitable driver found for jdbc:mysql://localhost:3306……

No suitable driver found for jdbc:mysql://localhost:3306……

问题原因:

  1. 检查url是否正确,驱动字符串是否正确
     private static final String url="jdbc:mysql://localhost:3306/数据库?useUnicode=true&characterEncoding=utf-8";如果使用的mysql,驱动字符串为 com.mysql.jdbc.Driver
  2. 是否在buildpath导入mysql_jdbc驱动,版本是否匹配
  3. jar包位置是否正确
     web-inf/lib 

猜你喜欢

转载自blog.csdn.net/adonis_d_gogh/article/details/80495487