Error creating bean异常

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'XXX': Unsatisfied dependency expressed through field 'XXX'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.custom.interfaces.TaskService' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}

网络找到的答案都是说没有贴Service注解。
如果你存在引用的情况下,需要去留意你所引用的包有没有更新。因为旧的引用包中找不到新的服务,导致无法创建Bean的现象

你可能感兴趣的:(java)