◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
删除操作时使用 amq 遇到的问题
在使用 amq 消息中间件进行数据导入和消息发送时,遇到了删除操作无法正常进行的问题,错误信息如下:
[ERROR] org.springframework.beans.factory.BeanDefinitionStoreException: Bean named 'mongoTemplate' already exists in the same scope 'singleton',. If bean name collision is not desired, then consider revisiting the bean definition registration process in your configuration.
原因分析
这个问题与 amq 无关,而是由于在 spring ioc 容器中注册了两个同名的 bean。
解决方案
检查并确保在 spring 配置中没有重复注册 bean 名称,可以尝试更改 mongodb 模板 bean 的名称,或确保不重复定义相同的 bean。
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。