[Spring Boot Error] Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
2022. 9. 23. 20:11
프로그래밍/Spring Boot
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. 에러 해결 방법 원인 url이 없다는 에러 gradle에 jpa를 설정해서 생기는 에러 jpa가 db 설정을 자동으로 해줌. 그래서 연결을 하려고 하는데 연결할 db url이 없다는 뜻 간단한 해결법 DataSourceAutoConfiguration을 exclude 하기 @SpringBootApplication(exclude = DataSourceAutoConfiguration.class) @SpringBootApplication(exclude = DataSourceAutoConfiguration.cl..