springboot 부트 오류 보고Error starting ApplicationContext(데이터 원본을 설정하지 못했습니다)
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.