with root cause java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
问题 I've this little code for connect my jsp to my mysql db. String driver = "com.mysql.jdbc.Driver"; Class.forName(driver); String url="jdbc:mysql://localhost:3306/test1"; Connection con = DriverManager.getConnection(url, "test1", "test1"); Statement cmd = con.createStatement(); String query = "SELECT * FROM champions"; ResultSet res = cmd.executeQuery(query); while (res.next()) { System.out.print(res.getString("name") + ", "); System.out.println(res.getString("title")); } res.close(); //