报错Failed to configure a DataSource: 'url' attribute is not specified and no embedded datas(代

Posted mussessein

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了报错Failed to configure a DataSource: 'url' attribute is not specified and no embedded datas(代相关的知识,希望对你有一定的参考价值。

有的时候,dubbo的消费者不需要配置数据源;

在子项目引入父项目依赖的时候

同时引入了自动配置数据源的依赖,有没有配置数据源的时候,就会报错;

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

两种解决方法:

如果不需要配置数据源,又需要使用依赖,可以使用第一种方法

  1. 取消数据源的自动配置;

    @SpringBootApplication(exclude= {DataSourceAutoConfiguration.class})
    
  2. 不引入数据源的依赖,或者排除

    <exclusions>
        <exclusion>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
        </exclusion>
    </exclusions>
    

以上是关于报错Failed to configure a DataSource: 'url' attribute is not specified and no embedded datas(代的主要内容,如果未能解决你的问题,请参考以下文章

struts报错严重: Dispatcher initialization failed Unable to load configuration.

springboot启动报错:Failed to configure a DataSource

SpringBoot运行报错“The Tomcat connector configured to listen on port 80 failed to start.“

Maven中的Spring Boot的web项目报错Failed to configure a DataSource: ‘url‘

第一个springboot项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no

springboot启动报错 Failed to configure a DataSource: 'url' attribute is not specified and no emb