Uses of Package
jakarta.data.repository
Package
Description
In Domain-driven design, DDD, a repository is an object that participates in the domain but abstracts away storage
and infrastructure details.
-
ClassDescriptionA repository interface for performing basic operations on entities.Parent repository interface for all repositories.The
Delete
annotation indicates that the annotated repository method requests one or more entities to be removed from the database.TheInsert
annotation indicates that the annotated repository method requests that one or more entities be inserted into the database.TheSave
annotation indicates that the annotated repository method updates one or more entities if found in the database and inserts entities into the database that are not found.TheUpdate
annotation indicates that the annotated repository method requests that one or more entities be updated if found in the database.