#JBDC driver not working (Maven, Java)
1 messages · Page 1 of 1 (latest)
https://mkyong.com/maven/how-to-add-oracle-jdbc-driver-in-your-maven-local-repository/ perhaps this will help?
if this doesn't help you further, please give us some detail on what you have done so far in terms of installation processes
try
Class.forName("com.mysql.jdbc.Driver");
to preload the driver
Class.forName("oracle.jdbc.OracleDriver");
Also, in Eclipse, if you don't see the class, then the driver is not built into your project properly
For SQL Server and Oracle, you need to install the JDBC
driver into your local Maven Repository
using mvn install:install-file
like @muted hawk showed above