springboot 부트 오류 보고Error starting ApplicationContext(데이터 원본을 설정하지 못했습니다)

5098 단어
오류는 다음과 같습니다.
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2020-07-09 14:30:47.386 ERROR 25792 --- [  restartedMain] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
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).


주요 오류: DataSource를 구성하지 못했습니다.'url'attribute가 지정되지 않았으며 임베디드 데이터소스를 구성할 수 없습니다.
데이터 원본을 설정할 수 없습니다. "url"속성을 지정하지 않았고 삽입식 데이터 원본을 설정할 수 없습니다.
원인:
스프링 부팅은 기본적으로 org를 불러옵니다.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration 클래스, DataSourceAutoConfiguration 클래스는 @Configuration 주석을 사용하여 spring에 dataSource bean을 주입했습니다.프로젝트에 dataSource와 관련된 설정 정보가 없기 때문에spring에서 dataSource bean을 만들 때 관련 정보가 부족하면 오류를 보고합니다.
두 가지 해결 방법
1. Application 클래스에 추가(시도하지 않음)
@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})
2. 데이터 소스 구성: (직접 측정 유효)
예를 들어 애플리케이션 구성 파일에서 다음을 수행합니다.
spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://ip:포트 번호/데이터베이스 이름?useSSL=false&useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8

좋은 웹페이지 즐겨찾기