[Spring] Failed to configure a DataSource 에러 해결

J_Log·2023년 6월 7일
0

Spring

목록 보기
6/10

💥에러 발생

새 spring 프로젝트를 만들고 실행하려고 보니 다음 에러가 발생했다.

Description:

Failed to configure a DataSource: 
'url' attribute is not specified and no embedded datasource could be configured.

db를 찾을 수 없다고 하는 거 같다.

✅문제 해결

디펜던시 추가

build.gradle에 디펜던시를 추가해줬다.

implementation 'mysql:mysql-connector-java:[mysql 버전]'

db 경로 설정

maven: applicaiton.properties

spring.datasource.url=jdbc:mysql://localhost:3306/db_name
spring.datasource.username=db_username
spring.datasource.password=db_password

gradle: application.yml

spring:
  datasource:
    url: jdbc:mysql://localhost:3306/db_name
    username: db_username
    password: db_password

mysql id,pw 모를 때

mysql을 이용한 프로젝트의 application 파일을 뒤져보자...

😎해결!

profile
공부합시다

0개의 댓글