728x90
반응형
💡 JPA와 MySQL을 연동하여 사용해보자!
1. 우측 상단 메뉴바의 Database → ‘+’버튼 → DataSource → MySQL → root(pw) 입력하고 OK
2. application.yml 파일에 정의
spring:
h2:
console:
enabled: true
jpa:
show-sql: true
properties:
hibernate:
format_sql: true
generate-ddl: true
hibernate:
ddl-auto: create-drop
datasource:
url: jdbc:mysql://localhost
username: root
password:
sql:
init:
mode: always
3. build.gradle 파일에 코드 추가
implementation 'org.springframework.boot:spring-boot-starter-data-jpa’
implementation 'mysql:mysql-connector-java:8.0.16’
4. ApplicationTest파일에서 contextLoads() 메서드 실행하여 연결 테스트
728x90
반응형
'🍃SpringFramework > SpringDataJPA' 카테고리의 다른 글
[JPA] 고아 객체 제거(OrphanRemoval) (0) | 2023.09.10 |
---|---|
[JPA] Cascade. 영속성 전이 (0) | 2023.09.10 |
[JPA] 1:N Relation. 관계 설정 (0) | 2023.09.10 |
[JPA] 1:1 Relation. 관계 설정 (0) | 2023.09.10 |
[JPA] Entity Listener. 엔티티 리스너 (0) | 2023.09.10 |