- [ JPA ][JPA] batch insert2022-02-24 12:01:19batch insert 는 여러 개의 SQL 을 한 번에 하나의 트랙잭션으로 처리 할 수 있는 기능을 말하며, 정확히는 JDBC-batching 기능이다. [Hibernate 공식문서] Hibernate ORM 5.4.33.Final User Guide Fetching, essentially, is the process of grabbing data from the database and making it available to the application. Tuning how an application does fetching is one of the biggest factors in determining how an application will perform. Fetching too much dat..
- [ JPA ][JPA] Gradle - ddl auto 설정2022-02-16 16:25:19JPA란? JPA(Java Persistence API) 설정 build.gradle dependencies{ implementation 'org.springframework.boot:spring-boot-starter-data-jpa' } application.yml spring: datasource: url: jdbc:mysql://(host):(port)/(dbname) username: (username) password: (password) jpa: hibernate: ddl-auto: create-drop show-sql: true create 기존 Table Drop + 생성 create-drop create후 종료시 drop까지 실행 update 변경된 내용만 수정한다. 이건 JPA스팩에는..