该配置项的目的,就是如果当前项目中存在同名的bean,后定义的bean会覆盖先定义的。
报错信息表明,在声明 org.apache.shardingsphere.shardingjdbc.spring.boot 包下的
SpringBootConfiguration中的dataSource这个bean时出错, 原因是有一个同名的 dataSource 的bean在com.alibaba.druid.spring.boot.autoconfigure包下的DruidDataSourceAutoConfigure类加载时已经声明了。
文章来源:https://www.toymoban.com/news/detail-551015.html
而我们需要用到的是 shardingjdbc包下的dataSource,所以我们需要配置上述属性,让后加载的覆盖先加载的。文章来源地址https://www.toymoban.com/news/detail-551015.html
解决办法
在application.yml中增加配置
spring:
main:
allow-bean-definition-overriding: true
到了这里,关于The bean‘ dataSource‘, defined in class path resource具体错误在下面和解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!