Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource cou...

報(bào)錯(cuò)描述:
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
大致意思就是沒有數(shù)據(jù)庫配置。

原因:
spring boot項(xiàng)目啟動時(shí)會默認(rèn)加載org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
這個(gè)類,DataSourceAutoConfiguration類使用了@Configuration注解向spring注入了dataSource bean。
如果你的項(xiàng)目中并沒有關(guān)于dataSource相關(guān)的配置信息,當(dāng)spring創(chuàng)建dataSource bean時(shí)因缺少相關(guān)的信息就會報(bào)錯(cuò)。

解決辦法:
在@SpringBootApplication注解上加上exclude,解除自動加載DataSourceAutoConfiguration

@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容