springboot整合jpa,提示bean重复问题分析及解决

报错情况:

Description:

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

 

报错原因:这个Bean已经注册了,不能被覆盖

 

情况1:存在2个一样名称的bean,首先可以检查自己的类是否有写重复名称了

情况2:在新建springboot项目时,同时勾选了JPA和jdbc,导致依赖重复;因为spring-boot-starter-data-jpa内部已经有了spring-boot-starter-data-jdbc

 

解决方法:删除多余的spring-boot-starter-data-jdbc依赖即可

springboot整合jpa,提示bean重复问题分析及解决_第1张图片

你可能感兴趣的:(JAVA,JPA,SpringBoot)