[SpringBoot] MySQL 연결 설정 (application.yml)

먼저 Spring Boot는 properties파일을 공식적으로는 지원하나 yml파일로 포스팅하겠다.

따라서 일단 application.properties파일을 application.yml로 바꾸자.

그리고 application.yml 파일안의 내용을 아래와 같이 작성하자.

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:(MySQL의 포트번호)/(DB이름)?serverTimezone=Asia/Seoul
    username: (user명)
    password: (password)

좋은 웹페이지 즐겨찾기