Skip to content

Latest commit

 

History

History
executable file
·
20 lines (16 loc) · 531 Bytes

ReadMe.md

File metadata and controls

executable file
·
20 lines (16 loc) · 531 Bytes

Spring Data Jpa

Configuration

    <!-- Spring boot parent dependency -->
    <parent>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-parent</artifactId>
      <version><!-- spring boot version --></version>
      <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <!-- Spring data dependency -->
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-data-jpa</artifactId>
    </dependency>
`