CREATE DATABASE testdb; -- db 생성
SHOW DATABASES; -- 잘 생성됐는 조회
# MySQL 설정
spring.datasource.url=경로
spring.datasource.username=대이터베이스 이름
spring.datasource.password=비밀번호
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
나와 같은 방법으로 한 경우
# MySQL 설정
spring.datasource.url=jdbc:mysql://localhost:3306/testdb
spring.datasource.username=root
spring.datasource.password=비밀번호
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true