Springboot出现了Failed to configure a DataSource: ‘url‘ attribute is not specified and ...怎么解决

Springboot出现了Failed to configure a DataSource: ‘url‘ attribute is not specified and ...怎么解决,第1张

解决办法:

在 SpringBoot 应用程序启动时,排除 jdbc 的自动装配机制即可,在程序入口文件中新增配置注解 “ exclude=DataSourceAutoConfiguration.class ” ,如下图:

@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)

就可完美解决这个问题。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/790526.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-05
下一篇 2022-05-05

发表评论

登录后才能评论

评论列表(0条)

保存