Java org.springframework.data.jpa.repository JpaRepository fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.data.jpa.repository JpaRepository fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.data.jpa.repository JpaRepository.

The text is from its open source code.

Implementation

org.springframework.data.jpa.repository.JpaRepository has the following implementations.
Click this link to see all its implementation.

Method

ListfindAll()
OptionalfindOne(Example example)
Returns a single entity matching the given Example or null if none was found.
TgetOne(ID id)
Returns a reference to the entity with the given identifier.
SsaveAndFlush(S entity)
Saves an entity and flushes changes instantly.