缺少DataSource:‘url‘导致无法启动

出现以下原因导致项目无法启动缺少DataSource:‘url‘导致无法启动_第1张图片
是由于在pom.xml中导入数据库相关的,而在yml配置文件中没有进行数据库的配置
此时只需在配置文件中配置以下信息即可

spring:
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource # 当前数据源操作类型
    driver-class-name: org.gjt.mm.mysql.Driver # mysql驱动类
    url: jdbc:mysql://localhost:3306/db2019?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT%2B8
    username: root
    password: root

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