Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datasource could

目录

一、问题描述

二、方法1

三、方法2

四、方法3

五、参考文章:


一、问题描述

启动Springboot项目后启动报错,本人第一种方法解决

无法配置DataSource:未指定'url'属性,也无法配置嵌入数据源。

很明显,就是在应用中没有配置datasource的一些相关属性,例如:数据库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 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).
 
说明:
 
未能配置DataSource:未指定“url”特性,也无法配置任何嵌入的数据源。
 
原因:无法确定合适的驱动程序类别
 
操作:
 
考虑以下内容:
 
如果您想要一个嵌入式数据库(H2、HSQL或Derby),请将其放在类路径中。
 
如果您有要从特定配置文件加载的数据库设置,则可能需要激活它(当前没有激活的配置文件)。

二、方法1

        yml或者properties文件没有被扫描到,在pom文件中添加如下,来保证文件都能正常被扫描到并且加载成功:

  <build>
        <!--指定resources插件:
            把java目录和resources下面的任意子目录中的xml文件编译到target/classes目录中
        -->
            <resources>
                <resource>
                    <directory>src/main/java</directory>
                    <includes>
                        <include>**/*.yml</include>
                        <include>**/*.properties</include>
                        <include>**/*.xml</include>
                    </includes>
                    <filtering>false</filtering>
                </resource>
                <resource>
                    <directory>src/main/resources</directory>
                    <includes>
                        <include>**/*.yml</include>
                        <include>**/*.properties</include>
                        <include>**/*.xml</include>
                    </includes>
                    <filtering>false</filtering>
                </resource>
            </resources>
    </build>

三、方法2

将@SpringBootApplication修改为@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class})就可以启动的时候不需要连接数据库:

@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class})

四、方法3

检查application.yml文件中数据库配置信息

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/springdb?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
    username: root
    password: 3333

五、参考文章:

Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datasource could_failed to configure a datasource: 'url' attribute -CSDN博客

彻底解决Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datasource_failed to configure a datasource: 'url' attribute -CSDN博客

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值