본문 바로가기
프로그래밍/세팅 및 오류

Spring boot jpa 에서 mysql과 연동하기

by 노잼인간이라불립니다 2022. 2. 15.

1.build.gradle 디펜던시에

implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'mysql:mysql-connector-java'

를 추가.

2. application.properties 파일에

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/datingjpa?useSSL=false&useUnicode=true&serverTimezone=Asia/Seoul
spring.datasource.username=root
spring.datasource.password=12345

를 추가. 끝.