Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 642 Bytes

File metadata and controls

23 lines (15 loc) · 642 Bytes
layout page
title 401.12 Reading Notes
permalink /401-R12/

Routes and Static Files in Spring

JPA

Spring Data JPA

  • Spring Data JPA (Java Persistence API) is an implementation tool for automating much of the coding required for data layers.

  • Shortcuts that imply code include:

    • Annotations
    • Naming conventions (for example, may imply query methods)

JPA Repository

  • JPA Repository is one of multiple interfaces for Spring to add functionality related to persisting data.

  • Using the interface and extends JpaRepository syntax, a repository may be implemented based upon the class name assigned