APPLICATION FAILED TO START : Failed to determine a suitable driver class
# Situation 신규 프로젝트 생성 후 필요한 Gradle Dependency 추가 Application 구동 테스트 시 에러 ## Error Log Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. 간단하게 직역하면, Database 연결을 위한 URL이 없다. implementation 'org.springframework.boot:spring-boot-starter-data-jpa' 즉, jpa dependency 추가 시 자동으로 Database 설정을 진행하는데 이때 연결을 위한 Database URL이 없다는 의미이다. Consider..