SpringBoot啟動報錯Failed to determine a suitable driver class


SpringBoot啟動報錯如下

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2019-05-06 21:27:18.275 ERROR 10968 --- [ main] 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).


Process finished with exit code 1


把這個依賴注釋掉就好了

原因

應用沒有使用到DataSource,但是在pom.xml里引入了mybatis-spring-boot-starter

問題解決辦法

有兩種:

把mybatis-spring-boot-starter的依賴去掉,這樣就不會觸發spring boot相關的代碼

把spring boot自動初始化DataSource相關的代碼禁止掉

禁止的辦法有兩種:

在啟動類的@SpringBootApplication加上

@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class, DataSourceTransactionManagerAutoConfiguration.class })

在application.properties里配置:

spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

        <div class="art_xg">

您可能感興趣的文章:

原文地址:https://www.jb51.net/article/160814.htm


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM