码迷,mamicode.com
首页 > 编程语言 > 详细

springboot集成redis 报错@Bean definition illegally overridden by existing bean definition@bean定义被现有bean定义非法重写

时间:2020-03-24 10:43:08      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:ann   没有   源码   framework   意思   primary   check   错误   bean   

在做springboot集成redis时报如下错误:

org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name ‘cacheManager‘ defined in class path resource [org/springframework/boot/autoconfigure/cache/RedisCacheConfiguration.class]: @Bean definition illegally overridden by existing bean definition: Generic bean: class [com.muyuer.bee.engine.cache.memory.MemoryCacheManager]; scope=; abstract=false; lazyInit=true; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [applicationContext-bee.xml]

百度居然没有相关文章,google也没有.
没办法只能仔细查看错误信息,关注到@Bean definition illegally overridden by existing bean definition,意思是@bean定义被现有bean定义非法重写,查看org/springframework/boot/autoconfigure/cache/RedisCacheConfiguration.class源码里面有一个@bean 名称为cacheManager,再看自己代码里也有一个同样名称的接口定义,报着试一下,把自己代码里的CacheManager接口改了一个名字,再运行居然成功了。

其实idea提示对错误的说明还是很清楚的了,仔细看看总能找到答案。

springboot集成redis 报错@Bean definition illegally overridden by existing bean definition@bean定义被现有bean定义非法重写

标签:ann   没有   源码   framework   意思   primary   check   错误   bean   

原文地址:https://www.cnblogs.com/DevMuYuer/p/12557189.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!