SpringBoot啓動報錯:Failed to configure a DataSource: 'url' attribute is not specified and no embedded

大概會出現這樣的錯誤

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

1、DataSourceAutoConfiguration會自動加載.可以排除此類的自動配置,在啓動類中加入

@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class})

參考文章:

https://blog.csdn.net/nuomizhende45/article/details/84678976

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章