前言:
写黑马的瑞吉外卖的时候遇到了这个问题,写博客记录一下。
报错:
下面展示一些 内联代码片
。
***************************
APPLICATION FAILED TO START
***************************
Description:
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
// 配置数据源失败:没有指定'url'属性,无法配置嵌入的数据源。
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).
// 请考虑以下几点:
// 如果你想要嵌入式数据库(H2、HSQL或Derby),请把它放在classpath(类路径)上。
// 如果要从特定配置文件加载数据库设置,则可能需要激活它(当前没有配置文件处于活动状态)。
下面展示一些 内联代码片
。
报错:Failed to determine a suitable driver class —> 没法确定合适的驱动程序类
原因:没有在application.yml中配置数据源(比如druid连接池)或 数据库驱动(比如mysql)
加上数据源配置:(这里我用的是8.x的mysql版本,所以要加.cj)
spring:
application:
name: reggie_take_out
datasource:
druid:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/reggie?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root
password: "123456"
配置完成后又遇到了问题:
在这里看到idea显示无法解析配置属性;真的令人头大。
好在我想了一个最朴实的想法,自己在手打一遍。嘿,果然可以了。
这告诉我们不要想捷径,要慢慢来。