Just a quick note, if you are seeing
java.sql.SQLException: No suitable driver ...although you are pretty sure you have :-
-
Got the jdbc connection information correct
- db username
- db password
- db url
- db driver class
- Got the driver jar file in the classpath for your web all
- You are using connection pooling such as c3p0 or commons-pool
Class.forName("... jdbc driver....");and for some reason seems to be loading it through system classloader hence if our jdbc driver jar file is in our webapp level, it's being missed causing this exception.
Hopefully, this helps whoever hits this issue.
Cheers