关于The bean 'xxx', defined in null, could not be registered.报错

Description:

The bean 'scanProductUserRepository', defined in null, could not be registered. A bean with that name has already been defined in null and overriding is disabled.

Action:

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

以上是问题,开始的时候因为看到问题,所以有点慌张,然后就直接百度,然后看到大家说跟着提示的Action做了,于是我也这么做了,然后就浪费了一大段时间去思考后面出现的问题,结果回来一看,读了一下Description,原来是类重名了,看了一下自己的项目,原来有两个包中的类的名字是相同的,改掉,问题解决。

结论:对类进行命名的时候,不可粗心大意,避免类名重复

你可能感兴趣的:(学习过程中的一些问题)