Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. 해결하기
카테고리 없음 2019. 8. 20. 16:03springboot 에서 아래와 같은 에러가 발생한다면.
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
다음과 같이 드라이브 클래스 이름부터 제대로 추가했는지 확인하다.
spring.datasource.driver-class-name: com.mysql.jdbc.Driver
spring.datasource...
....