欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Error starting ApplicationContext. To display the conditions report re-run your application with ‘de

程序员文章站 2022-01-30 20:46:58
...

Error starting ApplicationContext. To display the conditions report re-run your application with 'de

原因

原因:

未能配置数据源:未指定“url”属性,无法配置嵌入的数据源。

无法确定合适的驱动程序类

解决方案

在配置文件添加url

spring.datasource.name=defaultDataSource
# 数据库连接地址
spring.datasource.url=jdbc:mysql://localhost:3306/news_user?serverTimezone=Hongkong&useUnicode=true&characterEncoding=utf8
# 数据库用户名&密码:
spring.datasource.username=root
spring.datasource.password=root
相关标签: java