0% found this document useful (0 votes)
18 views2 pages

Data With JPA - Data Strategies Cheatsheet - Codecademy

The Java Persistence API (JPA) is a specification for interfaces to store, query, and update data in a database and can be implemented by an ORM that maps classes to tables, allowing developers to interact with the database without writing queries; H2 is an embedded Java database engine that supports in-memory or disk-based persistence.

Uploaded by

IliasAhmed
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views2 pages

Data With JPA - Data Strategies Cheatsheet - Codecademy

The Java Persistence API (JPA) is a specification for interfaces to store, query, and update data in a database and can be implemented by an ORM that maps classes to tables, allowing developers to interact with the database without writing queries; H2 is an embedded Java database engine that supports in-memory or disk-based persistence.

Uploaded by

IliasAhmed
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Cheatsheets / Data with JPA

Data Strategies
Spring Java Persistence API
The Java Persistence API (JPA) is a specification for the
set of interfaces to store, query, and update data stored
in a database. JPA can be implemented by an Object
Relational Mapping (ORM) which maps classes to a
database table. JPA’s use of ORM allows developers to
interact with the database without having to write
database queries.

Spring H2 Database
H2 is a type of database engine in Java. It is embedded
into the application and supports in-memory or disk-
based persistence.

You might also like