Development/Spring & SpringBoot
[스프링 부트, Spring Boot] MySQL 연동
컴공 K
2021. 11. 5. 00:01
Spring Boot MySQL 연동
gradle을 사용할 때, src/main/resources/application.properties에 들어가서 아래 내용을 넣어주면 된다.
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/example?serverTimezone=UTC&characterEncoding=UTF-8
spring.datasource.username=root # 계정명
spring.datasource.password=0000 # 비번
https://victorydntmd.tistory.com/321
728x90