Maven dependencies

If you go to the pom.xml file, there you can see the dependencies for the JDBC, and we are using MySQL for the data. Here is a piece of code of the pom.xml file:

-----
-----
<!-- This is for JDBC use -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
-----
-----

<!-- This is for use the MySQL -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
-----
-----
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.144.89.2