[ springboot 오류 ] : Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured
스프링 부트 프로젝트 생성후 어플리케이션 실행 시도 후 발생한 에러다. 카카오맵 api 사용 시도하는 과정에서 url 에러가 났다. 에러 메시지 : Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured 해결방법 : 어플리케이션에 다음과 같이 추가해준다. @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class })
spring boot
2023. 5. 9. 23:03