Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- application.properties
- OAuth2
- 백기선
- rest api
- 다익스트라
- 백트래킹
- 스프링부트
- Spring Security
- JsonSerializer
- AuthenticationPrincipal
- Application Event
- webjar
- 브루트포스
- HttpMessageConverters
- 외부설정
- 스프링 부트
- Application Argument
- cors
- 백준
- @ConfigurationProperties
- 알고리즘
- 정적 리소스
- 리소스핸들러
- EnableAutoConfiguration
- WebApplication Type
- @Profile
- 리소스 서버
- HATEOAS
- JPA
- Application Runner
Archives
- Today
- Total
아카이브
[스프링 데이터 JPA] JPA프로그래밍 1. 프로젝트 셋팅 본문
데이터베이스 실행
- PostgreSQL 도커 컨테이너 재사용
- docker start postgres_boot
스프링 부트
- 스프링 부트 v2.*
- 스프링 프레임워크 v5.*
스프링 부트 스타터 JPA
-
JPA 프로그래밍에 필요한 의존성 추가
- JPA v2.*
- Hibernate v5.*
-
자동 설정: HibernateJpaAutoConfiguration (JPA에 필요한 모든 빈 들이 자동으로 등록됨)
- JpaBaseConfiguration의 하위 클래스(EntityManagerFactoryBuilder, LocalContainerEntityManagerFactoryBean)
- 컨테이너가 관리하는 EntityManager (프락시) 빈 설정
- PlatformTransactionManager 빈 설정
application.properties 설정
spring.datasource.url=jdbc:postgresql://localhost:5432/springboot
spring.datasource.username=jumen
spring.datasource.password=5215
spring.jpa.hibernate.ddl-auto=create //개발중일때 애플리케이션 구동때마다 create한다
#spring.jpa.hibernate.ddl-auto=update //스키마를 업데이트하지만 지저분해 질 수 있으니 유의
#spring.jpa.hibernate.ddl-auto=validate //운영시
Account 도메인 클래스
package me.jumen.springdatajpa;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
@Entity // 테이블 맵핑
public class Account {
@Id // ID로 쓴다
@GeneratedValue // 자동생성값
private Long id;
@Column // 생략되어있는거랑 마찬가지이다
private String username;
private String password;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
JpaRunner 클래스
@Component
@Transactional // entityManager과 관련된 모든 행위들은 한 트랜잭션 안에서 일어나야 한다. 클래스에 붙이면 모든 메서드에 적용된다.
public class JpaRunner implements ApplicationRunner {
@PersistenceContext
// JPA 핵심 클래스 (SpringBoot의 ApplicationContext와 같은 위상)
EntityManager entityManager;
//@Transactional // 메서드에만 붙일 수도 있다.
@Override
public void run(ApplicationArguments args) throws Exception {
Account account = new Account();
account.setUsername("WON");
account.setPassword("hibernate");
// 하이버네이트의 가장 핵심적인 API는 Session이다.
// 2. 하이버네이트 Session을 통한 save
Session session = entityManager.unwrap(Session.class);
session.save(account);
// 1. JPA를 통한 save
// // entityManager.persist(account);
}
}
'Spring > 스프링 데이터 JPA' 카테고리의 다른 글
[스프링 데이터 JPA] JPA 프로그래밍 3. Value 타입 맵핑 (0) | 2021.01.10 |
---|---|
[스프링 데이터 JPA] JPA 프로그래밍 2. 엔티티 타입 맵핑 (0) | 2021.01.10 |
[스프링 데이터 JPA] ORM 패러다임 불일치 (0) | 2021.01.10 |
[스프링 데이터 JPA] ORM 개요 (0) | 2021.01.10 |
[스프링 데이터 JPA] 핵심 개념 이해 (0) | 2021.01.10 |