JPA Tutorials - Java Code Geeks (original) (raw)

JPA Tutorials

In this detailed Resource page, we feature an abundance of JPA Tutorials!

The Java Persistence API (JPA) is a Java application programming interface specification that describes the management of relational data in applications using Java Platform, Standard Edition and Java Platform, Enterprise Edition.

Persistence in this context covers three areas:

The reference implementation for JPA is EclipseLink.

A persistence entity is a lightweight Java class whose state is typically persisted to a table in a relational database. Instances of such an entity correspond to individual rows in the table. Entities typically have relationships with other entities, and these relationships are expressed through object/relational metadata. Object/relational metadata can be specified directly in the entity class file by using annotations, or in a separate XML descriptor file distributed with the application.

JPA Tutorials – Getting Started

Simple examples based on the Java Persistence API

JPA Tutorials – Functions

Learn the most famous functionalities and operations of the Java Persistence API

JPA Tutorials – Queries

Learn how to call queries with Java Persistence API

JPA Tutorials – Integrations

Learn how to use Java Persistence API with the most powerful 3rd party frameworks

[undereg]

Back to top button