您好,登錄后才能下訂單哦!
這篇文章主要介紹了Spring boot 啟動提示數據源錯誤怎么辦,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
在啟動 Spring Boot 的項目的時候提示數據源未配置的錯誤。
09:52:08.333 [main] DEBUG o.s.b.d.LoggingFailureAnalysisReporter - Application failed to start due to an exceptionorg.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Failed to determine a suitable driver classat org.springframework.boot.autoconfigure.jdbc.DataSourceProperties.determineDriverClassName(DataSourceProperties.java:233) at org.springframework.boot.autoconfigure.jdbc.DataSourceProperties.initializeDataSourceBuilder(DataSourceProperties.java:174)
Spring 會提示你完整的導致啟動錯誤的信息是:
*************************** 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
從上面的啟動信息來看,已經說得非常清楚了,就是因為你配置了 Spring 的數據組件,但是你沒有配置相應的數據源。
因為這個會導致你的啟動失敗。
有下面的集中解決辦法:
最簡單的解決辦法就是在依賴中添加 H2 的數據庫,如果你使用 Spring Batch 的話,這個組件也是需要的,因為 Spring 會使用 H2 為數據源。
如果你已經添加了數據庫驅動,例如你添加了 mysql 的數據庫驅動。
那么你需要制定 Mysql 的數據庫連接參數。
spring.datasource.url=jdbc:mysql://localhost:3306/myDbspring.datasource.username=user1spring.datasource.password=passspring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
你可用在啟動的時候不載入數據源配置。
可用在啟動類上面,添加下面的注解。
@SpringBootApplication(exclude={DataSourceAutoConfiguration.class})
你也可以在啟動配置文件上面,添加下面的內容,這樣能夠保證你在啟動的時候不載入數據源配置類。
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAuto
感謝你能夠認真閱讀完這篇文章,希望小編分享的“Spring boot 啟動提示數據源錯誤怎么辦”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。