728x90
반응형
SMALL
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 (no profiles are currently active).
Database에 연결할 때 필요한 정보가 없기 때문이다
1. application.properties 에서 db 정보를 추가하거나
spring.datasource.url=
spring.datasource.username=
spring.datasource.password=
spring.datasource.driver-class-name=
2. exclude={DataSourceAutoConfiguration.class}) 을 @SpringBootApplication에 추가를 하여 DB과정을 제외시키자
SpringBootApplication(exclude={DataSourceAutoConfiguration.class})
public class AftmApplication {
public static void main(String[] args) {
SpringApplication.run(AftmApplication.class, args);
}
}
728x90
반응형
LIST
'SPRING > 스프링부트' 카테고리의 다른 글
gradle build (0) | 2022.03.21 |
---|---|
4. 스프링 부트에서 웹 환경 제외하고 순수 자바 어플리케이션으로 사용하기 (0) | 2022.01.14 |
[스프링부트]2. Spring Boot & JMS & ActiveMQ 연동 및 테스트 (0) | 2021.12.02 |
[스프링부트]1. [Error] Querydsl Cannot find symbol 오류 (0) | 2021.11.20 |
Thymeleaf 작동이 안되는 원인 (3) | 2021.11.19 |