About 182,000 results
Open links in new tab
  1. Getting Started :: Spring Data JPA

    The GitHub spring-data-examples repository hosts several examples that you can download and play around with to get a feel for how the library works.

  2. Spring Data JPA

    Spring Data JPA, part of the larger Spring Data family, makes it easy to easily implement JPA-based (Java Persistence API) repositories. It makes it easier to build Spring-powered …

  3. Spring Data JPA - Reference Documentation

    Spring Data JPA takes the concept of a specification from Eric Evans' book, “Domain Driven Design”, following the same semantics and providing an API to define such specifications with …

  4. Spring Data JPA

    Spring Data JPA provides repository support for the Jakarta Persistence API (JPA). It eases development of applications with a consistent programming model that need to access JPA …

  5. JPA :: Spring Framework

    The Spring JPA, available under the org.springframework.orm.jpa package, offers comprehensive support for the Java Persistence API in a manner similar to the integration with Hibernate …

  6. Getting Started | Accessing Data with JPA - Spring

    Accessing Data with JPA This guide walks you through the process of building an application that uses Spring Data JPA to store and retrieve data in a relational database.

  7. JPA Query Methods :: Spring Data JPA

    By default, Spring Data JPA uses position-based parameter binding, as described in all the preceding examples. This makes query methods a little error-prone when refactoring regarding …

  8. Spring Data JPA - Reference Documentation

    Jul 15, 2022 · 1. Preface Spring Data JPA provides repository support for the Jakarta Persistence API (JPA). It eases development of applications that need to access JPA data sources.

  9. Specifications :: Spring Data JPA

    JPA’s Criteria API lets you build queries programmatically. Spring Data JPA Specification provides a small, focused API to express predicates over entities and reuse them across …

  10. JPA :: Spring Data JPA

    This chapter points out the specialties for repository support for JPA. This builds on the core repository support explained in Working with Spring Data Repositories.