JPA

JPA) 프로젝트 생성

na_o 2022. 1. 29. 04:49
728x90

H2 데이터베이스 설치와 실행

 http://www.h2database.com/

• 최고의 실습용 DB

• 가볍다.(1.5M)

• 웹용 쿼리툴 제공

• MySQL, Oracle 데이터베이스 시뮬레이션 기능

• 시퀀스, AUTO INCREMENT 기능 지원

 

 

 

메이븐 소개

 https://maven.apache.org/

• 자바 라이브러리, 빌드 관리

• 라이브러리 자동 다운로드 및 의존성 관리

• 최근에는 그래들(Gradle)이 점점 유명

 

 

 

라이브러리 추가 - pom.xml

<!-- 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>org.example</groupId>
    <artifactId>ex1-hello-jpa</artifactId>
    <version>1.0.0</version>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>

    <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>

 

JPA는 인터페이스다!

 

 

JPA 설정하기 - persistence.xml

• JPA 설정 파일

• /META-INF/persistence.xml 위치

• persistence-unit name으로 이름 지정

• javax.persistence로 시작: JPA 표준 속성

• hibernate로 시작: 하이버네이트 전용 속성

 

//경로 : src/main/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/~/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는 특정 데이터베이스에 종속 X

• 각각의 데이터베이스가 제공하는 SQL 문법과 함수는 조금씩 다름

• 가변 문자: MySQL은 VARCHAR, Oracle은 VARCHAR2

• 문자열을 자르는 함수: SQL 표준은 SUBSTRING(), Oracle은 SUBSTR()

• 페이징: MySQL은 LIMIT , Oracle은 ROWNUM

• 방언: SQL 표준을 지키지 않는 특정 데이터베이스만의 고유한 기능

 

방언이라고 표현한 이유 : 데이터베이스마다 작성하는 SQL 문법이 다르기 때문

 

각각의 방언이 있어도 JPA가 알아서 한다

 

 

 

데이터베이스 방언

• hibernate.dialect 속성에 지정

• H2 : org.hibernate.dialect.H2Dialect

• Oracle 10g : org.hibernate.dialect.Oracle10gDialect

• MySQL : org.hibernate.dialect.MySQL5InnoDBDialect

• 하이버네이트는 40가지 이상의 데이터베이스 방언 지원

'JPA' 카테고리의 다른 글

JPA) 어플리케이션 개발  (0) 2022.01.30
JPA) JPA 소개  (0) 2022.01.21
JPA) SQL 중심적인 개발의 문제점  (0) 2022.01.20