JPA 시작 - (1) 프로젝트 생성

sylvie·2022년 8월 28일
0

스프링부트

목록 보기
9/11
post-custom-banner

프로젝트 생성

1. 프로젝트 생성 환경설정

  • 자바 8 이상(8 권장)
  • 메이븐 설정

2. 라이브러리 추가 - pom.xml

 <?xml version="1.0" encoding="UTF-8"?>
  <project xmlns="http://maven.apache.org/POM/4.0.0"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 <modelVersion>4.0.0</modelVersion>
 <groupId>jpa-basic</groupId>
 <artifactId>ex1-hello-jpa</artifactId>
 <version>1.0.0</version>
<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>
</project>

단, H2 데이터베이스는 내가 설치한 버전과 동일하게 설정해야한한다

3. JPA 설정하기 - persistence.xml

persistence.xml

  • JPA 설정 파일
  • 표준위치 : /META-INF/persistence.xml 위치
  • persistence-unit name으로 이름 지정
  • javax.persistence로 시작: JPA 표준 속성
  • hibernate로 시작: 하이버네이트 전용 속성
<?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/~/test"/>
<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>

데이터베이스방언

  • JPA는 특정 데이터베이스에 종속적이지 않을 기술. 따라서 다른 데이터베이스로 손쉽게 교체할 수 있다.
  • 데이터 베이스 방언 제공
    • 방언이란 ? SQL 표준을 지키지 않거나 특정 데이터베이스만 의 고유한 기능

    • 데이터 베이스 방언을 제공하는 이유 ?
      - 각각의 데이터베이스가 제공하는 SQL 문법과 함수는 조금씩 다름
      - 데이터 타입 : 가변 문자는 MySQL은 VARCHAR, Oracle은 VARCHAR2
      - 다른 함수명 : 문자열을 자르는 함수는 SQL 표준은 SUBSTRING(), Oracle은
      SUBSTR()
      - 페이징 처리: MySQL은 LIMIT , Oracle은 ROWNUM

    • 하이버네이트를 포함한 대부분의 JPA 구현체들은 이런 문제를 해결하려고 다양한 데이터베이스 방언 클래스를 제공

  • hibernate.dialect 속성에 지정
    • H2 : org.hibernate.dialect.H2Dialect
    • Oracle 10g : org.hibernate.dialect.Oracle10gDialect
    • MySQL : org.hibernate.dialect.MySQL5InnoDBDialect
      • 하이버네이트는 40가지 이상의 데이터베이스 방언 지원
post-custom-banner

0개의 댓글