Hello Spring Boot

    [Spring Boot] Failed to determine a suitable driver class 에러

    [Spring Boot] Failed to determine a suitable driver class 에러

    👀 문제발견 IntelliJ Community 버전으로 JPA를 공부를 하려고 Spring Initializr에서 Gradle Project를 생성하여 최초 실행시 Reason : Failed to determine a suitable driver class 라는 에러를 만났다. 😎 확인내용 해당 에러메시지는 Spring Initializr에서 DB관련한 dependency 라이브러리 (JPA, H2 ... )를 추가하여 SpringBoot에서 최초 빌드시 application.properties 파일을 생성하게 되는데 해당 파일 안에서 DataSource 관련 정보를 찾지 못했을 때 발생한다. 🔨 버그수정 @EnableAutoConfiguration(exclude={DataSourceAutoConfig..