您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么解決啟動springboot應用因未配置數據庫報錯問題”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么解決啟動springboot應用因未配置數據庫報錯問題”吧!
創建一個全新的springboot項目,第一次啟動時報錯,具體錯誤信息如下所示:
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2021-06-14 17:58:10.322 ERROR 12292 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :***************************
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 classAction:
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
方案一
在application.properties配置文件中添加數據庫配置信息
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/guli?serverTimezone=GMT%2B8 spring.datasource.username=cx spring.datasource.password=123456
方案二
在啟動類頭部聲明進行聲明:
@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)
新建spring boot項目選擇1.5.8.RELEASE版本后生成項目,配置好application.properties后啟動項目,報錯。
Caused by: java.lang.ClassNotFoundException: org.springframework.core.env.EnvironmentCapable
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
1.ctrl+shift+t查找后,發現沒這個類。
2.從這個類的全名不能發現,這個類是屬于spring-core.jar下的。
3.在maven dependencies中查看spring-core的版本是4.3.12.RELEASE
4.網上查詢可知spring-core4.3.12.RELEASE中沒有這個類。
找到有這個類的spring-core版本。我用的是 4.3.9.RELEASE。然后在dependencies中加入
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>4.3.9.RELEASE</version> </dependency>
感謝各位的閱讀,以上就是“怎么解決啟動springboot應用因未配置數據庫報錯問題”的內容了,經過本文的學習后,相信大家對怎么解決啟動springboot應用因未配置數據庫報錯問題這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。