Bonjour, je voudrais utiliser proxool pour creer un pool de connexion,
j'integre le jar ds mon classpath et je change le Class.forName
Avant:
Maintenant:Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost/test?user=test&password=test");Et je me retrouve avec une erreur GRAVEClass.forName("org.logicalcobwebs.proxool.ProxoolDriver").newInstance();
Connection conn = DriverManager.getConnection("proxool.example:com.mysql.jdbc.Driver:jdbc:mysql://localhost/test?user=test&password=test");
java.lang.NoClassDefFoundError
Partager