JPA는 ORM(object-relational mapping)에 대한 자바 명세이다. JPA는 자바 객체를 데이터베이스 테이블을 매핑하여, 개발자 들에게 SQL쿼리를 사용 하는 대신, 자바 객체로 데이터베이스 데이터를 조작하게 해준다.
개발자들은 Hibernate, ApacheOpenJPA, EclipseLink 같은 JPA 구현체 Library를 사용 할 수 있다.
https://kodejava.org/what-is-jpa-java-persistence-api/
What is JPA (Java Persistence API)? | Kode Java
JPA is a Java specification for object-relational mapping (ORM) in Java. JPA provide a way to map Java objects to database tables. This allows programmers to manipulate database information directly using Java objects instead of executing database SQL quer
kodejava.org
https://www.infoworld.com/article/3379043/what-is-jpa-introduction-to-the-java-persistence-api.html
What is JPA? Introduction to Java persistence
Get to know the Java persistence standard based on Hibernate and learn how to use JPA to store and manage Java objects in a relational or NoSQL database.
www.infoworld.com
'JPA' 카테고리의 다른 글
H2 데이터베이스 설치 및 구성 (0) | 2023.04.26 |
---|