【Bug】SpringBoot解决The bean 'dataSource', defined in BeanDefinition defined in class path resource问题

The bean ‘dataSource’, defined in BeanDefinition defined in class path resource
***************************
APPLICATION FAILED TO START
***************************

Description:

The bean 'dataSource', defined in BeanDefinition defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class], could not be registered. A bean with that name has already been defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class] and overriding is disabled.

Action:

Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true

原因

SpringBoot 和 SpringCloud 版本不兼容造成!!!!

解决方法

在application.yml添加命令,重启
【Bug】SpringBoot解决The bean 'dataSource', defined in BeanDefinition defined in class path resource问题_第1张图片

你可能感兴趣的:(Bug)