반응형
⌗ 오류 현상
***************************
APPLICATION FAILED TO START
***************************
Description:
Cannot determine embedded database driver class for database type NONE
Action:
If you want an embedded database please put a supported one on the classpath. If you have database settings to be loaded from a particular profile you may need to active it (the profiles "local" are currently active).
⌗ 해결 방법
SpringBoot을 시작할 때 데이터베이스 연결을 위해 DataSource를 확인하는데, 이때 이 설정이 확인되지 않아 발생하는 현상이다.
따라서, DataSource 타입 빈이 없다면 SpringBoot에서 제공하는 DataSourceAutoConfiguration 클래스를 이용해서 DataSource를 생성해야한다.
@SpringBootApplication
@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})
public class ApiApplication {
/**
* The entry point of application.
*
* @param args the input arguments
*/
public static void main(String[] args) {
SpringApplication.run(ApiApplication.class, args);
}
}
[참고] https://mainia.tistory.com/5634
반응형