java.lang.ClassNotFoundException: com.mysql.jdbc.Driver MySQLConnector/J
It seems the mysql connectivity library is not included in the project. Solve the problem following one of the proposed solutions: MAVEN PROJECTS SOLUTION Add the mysql-connector dependency to the pom.xml project file: <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.39</version> </dependency> Here you are all the versions: https://mvnrepository.com/artifact/mysql/mysql-connector-java ALL PROJECTS SOLUTION Add the jar library manually to the … Read more