springboot 시작 오류 APPLICATION FAILED TO START

문제 시작 springboot 오류


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

이유:


내 이유는 application.properties의 구성 파일에 링크 mysql의 구성 정보를 추가하지 않고 mysql-connector-java mybatis-spring-boot-starter 여러 종속성을 추가하기 위한 것이므로 springboot는 시작할 때 구성 파일에서 mysql을 로드합니다. 구성 정보, 구성이 없으면 모든 구성 정보를 찾지 못합니다.

솔루션 1


구성을 수정할 때 mysql 계정과 암호 및 데이터베이스 연결에 주의하십시오.
#spring.datasource.username=root
##spring.datasource.password=root
##spring.datasource.url=jdbc:mysql://127.0.0.1:3306/ssm?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Hongkong
##spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
다른 솔루션 참조

솔루션 2


yml 또는 속성 파일이 스캔되지 않았으므로 pom 파일에 다음을 추가해야 합니다.파일이 정상적으로 스캔되고 성공적으로 로드될 수 있는지 확인하십시오.
<!-- 如果不添加此节点mybatis的mapper.xml文件都会被漏掉。 -->
<resources>
    <resource>
        <directory>src/main/java</directory>
        <includes>
            <include>**/*.yml
            **/*.properties</include>
            <include>**/*.xml
        
        false
    
    
        src/main/resources
        
            **/*.yml</include>
            <include>**/*.properties
            **/*.xml</include>
        </includes>
        <filtering>false</filtering>
    </resource>
</resources>
해결 방법 3 이러한 자동 구성을 제외합니다. 시작 후 정상적으로 실행할 수 있습니다. @SpringBootApplication(제외 = DataSourceAutoConfiguration.class)

좋은 웹페이지 즐겨찾기