当前位置:   article > 正文

Spring boot 项目提示某一类型的 bean 找不到_no target bean properties found: can't map collect

no target bean properties found: can't map collection element

现象

项目启动输出:

Description:

Field pushTokenDao in com.bullyun.rule.core.strategy.AppMsgActionStrategy required a bean of type 'com.manniu.rds.api.PushTokenDao' that could not be found.


Action:

Consider defining a bean of type 'com.manniu.rds.api.PushTokenDao' in your configuration.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

但是明明已经定义了这个类型的 bean,为什么还提示这个错误呢?

原因

可能的一种原因是出现了相同名称的 bean了,而且其类型是不同的。使用 @Bean 注解如果不指定名称,那么将使用方法名。下面是注解 @Bean 源代码中的备注说明:

	 * The name of this bean, or if several names, a primary bean name plus aliases.
	 * <p>If left unspecified, the name of the bean is the name of the annotated method.
	 * If specified, the method name is ignored.
	 * <p>The bean name and aliases may also be configured via the {@link #value}
	 * attribute if no other attributes are declared.
	 * @see #value
	 */
	@AliasFor("value")
	String[] name() default {};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

解决方法

解决方法就很简单了,要么指定 bean name ,没么改变方法名。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/66384
推荐阅读
相关标签
  

闽ICP备14008679号