Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 1.79 KB

File metadata and controls

23 lines (12 loc) · 1.79 KB

Learn Spring JPA By Example with Oracle Database Free

Spring JPA (Java Persistence API) provides an abstraction layer over JPA using ORM (Object Relational Mapping). Spring JPA simplifies database interactions by abstracting common operations to simple Java objects and annotations.

This module includes idiomatic examples of Spring JPA with Oracle Database Free.

Basic JPA Entity Example

The com.example.relationships package defines a basic JPA entity and repository, using the student schema.

The SpringJPATest class provides examples of basic JPA repository usage.

JPA Entity Relationships

The com.example.relationships package defines JPA entities for the movie schema with one-to-one, one-to-many, and many-to-many relationships.

The JPARelationshipsTest class provides examples on managing JPA relationships using repositories.

Paging, Sorting, and Filtering JPA Entities

The com.example.paging package defines JPA entities for the author schema, including repositories with custom JPA methods that utilize paging, sorting, and filtering.

The PagingSortingFilteringTest class provides examples for paging, sorting, and filtering using the Author and Books repositories. Example of JPA @Query annotations, JPA query methods, and specification queries (introduced in JPA 2.0) are included.