我已经构建了一个动态项目,当我尝试连接到MySQL时,我收到以下错误:
No suitable driver found for jdbc:mysql://localhost/clouddb
我已经将Jar文件插入到Apache Tomcat lib文件夹中,因为我在Server上运行它,如下图所示,但同样的消息也是如此。
之后我尝试将驱动程序插入到WEB-INF
文件夹的lib中,驱动程序自动添加到Web App Libraries中,但同样是相同的消息。
任何建议我在哪里添加它?
提前致谢
答案 0 :(得分:0)
我需要添加以下内容:
String driver = "com.mysql.jdbc.Driver";
Class.forName(driver).newInstance();
就在行前:
con = DriverManager.getConnection(url, user, password);
从Maverick的回复中找到了这个。