剛建立的子項目出現:Failed to configure a DataSource: 'url' attribute is not specified...數據源出錯

關於數據源配置文件出錯

報錯說明:項目啓動時,數據源加載失敗了。

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

問題:剛建立的項目並無添加數據源,爲何會報這樣的錯?

緣由:由於子項目繼承了父類項目,而父類項目中依賴了數據源配置,導入了相關jar包,故子項目中也會有數據源項目的jar包。

解決方法:

在啓動類上添加註解,springboot在啓動時會自動排出數據源啓動項java

//springBoot啓動時排除數據源啓動項
@SpringBootApplication(exclude=DataSourceAutoConfiguration.class)
public class SpringBootRun {
    
    public static void main(String[] args) {
        
        SpringApplication.run(SpringBootRun.class,args);
    }
}

若是有其餘方法,請評論區中探討一下謝謝!!!spring

相關文章
相關標籤/搜索