-
[error] If you want an embedded database (H2, HSQL or Derby), please put it on the classpath[공부] 프로그래밍/ERROR 2023. 4. 29. 16:30
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath
아직 DB설정을 하지 않았기 때문에 Spring Boot에서 DB 연결 정보를 찾지 못해 해당 에러가 발생하게 된다.
-> application.properties에 DB설정을 하기 전까지 Application 클래스의 @SpringBootApplication에 exclude 옵션 추가
@SpringBootApplication(exclude={DataSourceAutoConfiguration.class})
'[공부] 프로그래밍 > ERROR' 카테고리의 다른 글