Persitence
에서 설정 정보를 읽어서 EntityManager
를 생성 후 필요할 때마다 EntityManager
를 생성❗️ 이펍에서는 gradle 기반으로 프로젝트나 실습을 실행하지만, 강의를 효율적으로 따라가기 위해 maven 기반으로 build했다.
전반적인 코드는 Github 에 작성해두었습니다!
아래는 pom.xml, persistence.xml 소스코드다. 김영한님 github에서 그대로 긁어왔는데도 내 개발환경에서는 에러가 발생해서 김영한님 코드와 조금 다르다.
<?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-java</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- JPA 하이버네이트 -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>5.4.1.Final</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<!-- H2 데이터베이스 -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.200</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence" version="2.2">
<persistence-unit name="jpa-basic">
<properties>
<!-- 필수 속성 -->
<property name="javax.persistence.jdbc.driver" value="org.h2.Driver"/>
<property name="javax.persistence.jdbc.user" value="{user명}"/>
<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.id.new_generator_mappings" value="true" />
<!--<property name="hibernate.hbm2ddl.auto" value="create" />-->
</properties>
</persistence-unit>
</persistence>
나이가 18살인 회원을 모두 검색하고 싶다면?
- 검색을 할 때도 테이블이 아닌 엔티티 객체를 대상으로 검색.
- 이때 모든 DB 데이터를 객체로 변환하여 검색하는 것은 불가능함.
➡️ 검색 조건이 포함된 SQL(==JPQL)이 필요함.
SELECT
, FROM
, WHERE
, GROUP BY
, HAVING
, JOIN
지원