1. 程式人生 > >Spring boot搭建啟動時,啟動失敗

Spring boot搭建啟動時,啟動失敗

初次使用spring boot,啟動時去出現了以下錯誤:

Failed to configure a DataSource: 'spring.datasource.url' is not specified and no embedded datasource could be auto-configured.
Reason: Failed to determine a suitable driver class

思考: 本來是按照入門教程來做的專案,但因為心急,所以在剛開始勾選時,將SQL中的MySQL和mybaits也勾選了,可能是沒有配置資料庫而引起的問題。 解決方法: 在網上尋找後,得到解決方法: 在這裡插入圖片描述

在@SpringBootApplication後新增(exclude=DataSourceAutoConfiguration.class),並匯入相關類即可正常啟動。