반응형 spring boot 실행오류1 [Spring boot - 스프링부트] Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. 오류 Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. 원인 application.properties 파일에 데이터베이스 연결 설정을 하지 않아서 오류가 발생됨 해결 방법은 application.properties 연결 설정을 하거나 DataSourceAutoConfiguration 클래스를 제외하면 됨 해결 @EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class}) 코드 추가로 해결 하였음 지금 당장 데이터베이스 연결 작업을 하려면 DataSourceAutoConfiguration 클.. 2022. 12. 3. 이전 1 다음 반응형