Uses of Package
jakarta.data.repository

Packages that use 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.
  • Class
    Description
    A 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.
    The Insert annotation indicates that the annotated repository method requests that one or more entities be inserted into the database.
    The Save 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.
    The Update annotation indicates that the annotated repository method requests that one or more entities be updated if found in the database.