[Solved] How to integrate spring jpa with spring boot? [closed]


Certainly, you can integrate spring boot with spring jpa – hibernate.
Add the dependencies to the project’s pom.xml

<dependencies>
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-data-jpa</artifactId>
  </dependency>
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-web</artifactId>
  </dependency>
<dependency>
   <groupId>mysql</groupId>
   <artifactId>mysql-connector-java</artifactId>
   <scope>runtime</scope>
  </dependency>
</dependencies>

4

solved How to integrate spring jpa with spring boot? [closed]