SpringBoot启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured

IT 文章5年前 (2021)发布 小编
0 0 0

有些同学在使用SpringBoot搭建项目时,启动Application提示如下错误:
[v_error]Failed to configure a DataSource: ‘url’ attribute is not specified and no embedded datasource could be configured.[/v_error]
具体如图:
SpringBoot启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured
1、错误的意思大概是:未能确定合适的驱动程序类导致配置数据源失败
[v_act]解决办法1:[/v_act]
可能的原因如下:
pom.xml中导入了类似如下mybatis依赖:


	org.mybatis.spring.boot
	mybatis-spring-boot-starter
	2.1.4

但是在核心配置文件application.propertiesapplication.yml中没有配置数据库连接相关的属性,比如url、dirver、username、password等。
解决:
application.properties中新增数据库连接配置:

#数据库连接配置
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/ssm?characterEncoding=utf-8&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=123456

或在application.yml中新增数据库连接配置:

ad

程序员导航

优网导航旗下整合全网优质开发资源,一站式IT编程学习与工具大全网站

#spring配置
spring:
  #数据库连接配置
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/ssm?characterEncoding=utf-8&serverTimezone=UTC
    username: root
    password: 123456

[v_act]解决办法2:[/v_act]
如果你添加了有关库的依赖但是又不想配置库的连接,可以使用Application启动类上@SpringBootApplication注解中配置如下即可:

@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})

[v_act]解决办法3:[/v_act]
如果第一种方式你尝试了但是还不能解决,还有一个可能的原因就是你的resources目录并没有设置为资源目录导致的,典型的特征就是Resources目录没有小黄标,如下:
SpringBoot启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured
我们需要打开File->Poroject Structure->Modules->Sources,展开目录找到resources目录将其置为Resources,如下:
SpringBoot启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured
然后apply->save,效果如下:
SpringBoot启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured

© 版权声明

相关文章

暂无评论

  • 1500240116
    1500240116 游客

    还有一种就是没有编译进去,看看target有没有

    广东东莞市
    回复