'AWS로 구현하는 MAS와 컨테이너 오캐스트레이션' 강의를
블로그를 통해 구매하시는 분들에게만 10%할인 중입니다.
이미지를 클릭하면 강의로 이동할 수 있습니다.
아래 쿠폰번호를 입력해 주세요!
16861-259843d6c2d7
증상
***************************
APPLICATION FAILED TO START
***************************
Description:
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
Reason: Failed to determine a suitable driver class
Action:
Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (the profiles burger are currently active).
DB연결 사용하지 않고 실행하게 되면 위 에러가 발생하게 된다.
원인
SpringBoot는 실행하게 되면 자동으로 DB의 정보를 요구하게 되는데 DB를 사용하지 않는다면 이 정보를 application.yml(properties)파일에 명시하지 않는다. 이때 Spring Boot에서 DB 연결 정보를 찾지 못해 해당 에러가 발생하게된다.
spring:
datasource:
driver-class-name:
url:
username:
password:
해결
//kotlin
@SpringBootApplication(exclude= [DataSourceAutoConfiguration::class])
//java
@SpringBootApplication(exclude={DataSourceAutoConfiguration.class})
Application 클래스의 @SpringBootApplication 주석에 exclude 옵션 추가
------------------------------------------------------------
해당 annotation 옵션을 추가하게 되면 entityManager가 spring bean으로 등록되지 않거나 등록 되었는데 인식 또는 주입이 안 되는 문제가 발생할 수 있음.
'Spring' 카테고리의 다른 글
[Spring Boot] 소켓 통신을 위한 Websocket 서버 구성 (0) | 2022.02.16 |
---|---|
[Spring Boot] log4j2 보안 문제 해결 방안 - CVE-2021-44228 (0) | 2021.12.13 |
[Spring] Spring Boot 로그 - slf4j 와 Logback, Log4j2 의 차이점 (0) | 2021.11.12 |
[Spring] 객체 지향 설계 5가지 - SOLID (0) | 2021.11.10 |
[Spring] 빈 후처리기 - BeanPostProcessor (0) | 2021.11.08 |