jdbc-mysql-demo

Steps to create new Jdbc-Mysql project:

  1. Create a simple maven project with archetype: "maven-archetype-quickstart".
  2. Add the following dependency in pom.xml file for MySQL Jdbc driver:
    <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
      <version>8.0.33</version>
    </dependency>
  1. Run this command in terminal: mvn clean install