SpringBoot启动报错:ould not be registered. A bean with that name has already been defined in file and

 

 

SpringBoot启动报错


***************************
APPLICATION FAILED TO START
***************************

Description:

The bean 'XXX', defined in class path resource [com/test/cms/XXX.class], could not be registered. A bean with that name has already been defined in file [D:\IDEAWorkSplace\XXX.class] and overriding is disabled.

Action:

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

Disconnected from the target VM, address: '127.0.0.1:54086', transport: 'socket'

Process finished with exit code 0

 

 

在配置文件application中加入

spring.main.allow-bean-definition-overriding=true

 

上一篇:Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definiti


下一篇:区分Overloading、Overriding及Hiding