本文主要是介绍【SpringBoot】搭建SpringBoot项目奇遇记,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、搭建项目框架
1. 搭建SpringBoot+Mybatis框架
快速通过脚手架搭建框架:
选择需要的组件:
二、搭建爬坑日记
1. Failed to configure a DataSource
异常日志:
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).
解决方法:
- 排除此类的自动装配,启动以后就可以正常运行。
@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)
- 在 application.yml 文件中添加数据库配置信息.
spring:datasource:url: jdbc:mysql://localhost:3306/testdb?useUnicode=true&characterEncoding=UTF-8&useSSL=falseusername: rootpassword: 123456driver-class-name: com.mysql.cj.jdbc.Driver
感谢阅读,下次再见。ヾ( ̄▽ ̄)ByeBye!
这篇关于【SpringBoot】搭建SpringBoot项目奇遇记的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!