728x90
반응형
- 프로젝트 생성
- File > New > Project > Maven 선택
- 메이븐 설정
- groupId: jpa-basic
- artifactId: ex1-hello-jpa
- version: 1.0.0
- pom.xml 에 라이브러리 추가
<dependencies>
<!-- JPA 하이버네이트 -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>5.3.10.Final</version>
</dependency>
<!-- H2 데이터베이스 -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.199</version>
</dependency>
</dependencies>
- JPA 설정하기 - JPA 설정 파일 persistence.xml
- 위치(표준 위치 정해져있음): resources/META-INF/persistence.xml
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.2"
xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_2.xsd">
<persistence-unit name="hello">
<properties>
<!-- 필수 속성 -->
<property name="javax.persistence.jdbc.driver" value="org.h2.Driver"/>
<property name="javax.persistence.jdbc.user" value="sa"/>
<property name="javax.persistence.jdbc.password" value=""/>
<property name="javax.persistence.jdbc.url" value="jdbc:h2:tcp://localhost/~/jpashop"/>
<property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>
<!-- 옵션 -->
<property name="hibernate.show_sql" value="true"/>
<property name="hibernate.format_sql" value="true"/>
<property name="hibernate.use_sql_comments" value="true"/>
<!--<property name="hibernate.hbm2ddl.auto" value="create" />-->
</properties>
</persistence-unit>
</persistence>
- persistence-unit name 으로 이름 지정
- javax.persistence 로 시작: JPA 표준 속성
- hibernate 로 시작: 하이버네이트 전용 속성
- JPA는 특정 데이터베이스에 종속 X
- 각각의 데이터베이스가 제공하는 SQL 문법과 함수는 조금씩 다름
- 가변 문자: MySQL은 VARCHAR, Oracle은 VARCHAR2
- 문자열을 자르는 함수: SQL 표준은 SUBSTRING(), Oracle은 SUBSTR()
- 페이징: MySQL은 LIMIT , Oracle은 ROWNUM
- 데이터베이스 방언 (hibernate.dialect)
- 방언: SQL 표준을 지키지 않는 특정 데이터베이스만의 고유한 기능
- hibernate.dialect 속성에 지정
- H2 : org.hibernate.dialect.H2Dialect
- Oracle 10g : org.hibernate.dialect.Oracle10gDialect
- MySQL : org.hibernate.dialect.MySQL5InnoDBDialect
- 하이버네이트는 40가지 이상의 데이터베이스 방언 지원
[Spring 입문9] 스프링 DB 접근 기술: H2 데이터베이스 설치 (tistory.com)
※ JDBC URL은 persistence.xml 파일의 다음 설정과 같아야 한다.
<property name="javax.persistence.jdbc.url" value="jdbc:h2:tcp://localhost/~/jpashop"/>
- JPA 구동 방식
- persistence라는 클래스에서 설정정보(persistence.xml) 조회해서
- EntityManagerFactory라는 클래스 생성
- 이 EntityManagerFactory클래스에서 필요할때마다 EntityManager 생성해서 사용
- JPA 동작 확인
- JpaMain 클래스 생성
package hellojpa;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;
public class JpaMain {
public static void main(String[] args){
EntityManagerFactory emf=Persistence.createEntityManagerFactory("hello");
//persistence.xml에서 persistence-unit name 으로 지정한 이름 "hello"
EntityManager em=emf.createEntityManager();
//code
em.close();
emf.close();
}
}
728x90
반응형
'JPA Tutorial' 카테고리의 다른 글
[자바 ORM 표준 JPA 프로그래밍 5] Hello JPA - JPQL (0) | 2023.09.16 |
---|---|
[자바 ORM 표준 JPA 프로그래밍 4] Hello JPA - 애플리케이션 개발 (0) | 2023.09.15 |
[자바 ORM 표준 JPA 프로그래밍 2] ORM 기술, JPA (0) | 2023.09.12 |
[자바 ORM 표준 JPA 프로그래밍 1] SQL 중심적인 개발의 문제점 (0) | 2023.09.12 |
[자바 ORM 표준 JPA 프로그래밍 0] JPA 공부 목표 (0) | 2023.09.09 |