Spring Boot Starter Data JPA Dependency

This page gives you a quick reference to get Spring Boot Starter Data JPA dependency for Maven or Gradle projects. 


You can also download the Spring Boot Starter Data JPA dependency, the link given at the "Download JAR File" section.

Spring Boot Starter Data JPA dependency is a starter for using Spring Data JPA with Hibernate.

Spring Boot Starter Data JPA Maven Dependency

Copy below maven dependency and paste in your project pom.xml file:
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

Spring Boot Starter Data JPA Gradle Dependency

Copy below Gradle dependency and paste it into your project build.gradle file:
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa'

Download JAR File

Check for Latest Release

References


Comments