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

配置数据源失败:没有指定'url'属性,并且没有嵌入的数据源可以--就是没有在application.yml/application.properties配置连接数据库的属性

针对以上原因造成的异常,可以采用如下办法解决:

在application.yml/application.properties中添加数据库相关配置;

例如:

Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datasource could_第1张图片

 

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/test
    username: root
    password: 123456

2.在SpringBootApplication注解中进行数据库配置的排除,即@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class})。

Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datasource could_第2张图片

你可能感兴趣的:(java,mybatis,数据库)