1. build.gradle파일에 이동해 dependencies 추가해주기
//mysql
runtimeOnly 'com.mysql:mysql-connector-j'//추가
2. application.properties 파일에 아래와 같이 설정 추가해주기.
#1
spring.datasource.url=jdbc:mysql://localhost:3306/diary?characterEncoding=UTF-8&serverTimezone=UTC
#2
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#3
spring.datasource.username=root
#4
spring.datasource.password=123
#1. 연결 정보를 적어줌.
jdbc:mysql | localhost | 3306 | diary | ?characterEncoding=UTF-8&serverTimezone=UTC | |||
DB정보 | host 주소 | Port번호 | 스키마 이름 |
character, UTC 설정 (생략 가능하나 이유모를 오류가 난다면 넣어보자ㅎ,ㅎ ) |
#2. 드라이버 클래스
#3 DB user 아이디
#4 DB user 비밀번호
'Spring' 카테고리의 다른 글
[ SpringBoot - JUnit 5 ] Dev , Test DB 분리 ( feat. h2 ) (3) | 2023.10.09 |
---|---|
[Spring] 필드 에러 메세지 표출하기 ( + Thymeleaf) (0) | 2023.06.18 |
[Thymeleaf] 타임리프 문법 (0) | 2023.04.16 |
[Spring] Port 8080 was already in use , Port 에러 해결하기 2 (0) | 2023.03.27 |
[Spring] spring Project Import (feat. Eclipse , spring boot , gradle) (0) | 2023.02.23 |