
Spring Boot App 을 실행했더니 아래와 같은 error 가 발견되었다.
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
Reason: Failed to determine a suitable driver class
데이터 소스를 구성하지 못했습니다. 'url' 속성이 지정되지 않았으며 포함된 데이터 소스를 구성할 수 없습니다.
이유: 적합한 드라이버 클래스를 결정하지 못했습니다.

해당 구문은 설정 파일인 application.properties 에 문법이 선언되어 있지 않거나 연결이 제대로 되어있지 않아서 나는 오류이다.
application.propertis 이란
- application 의 구성 및 환경변수를 설정하는데에 활용
- database 연결 정보, server port, logging 수준



