gpt4 book ai didi

java - Spring @Resource 期望至少有 1 个有资格作为此依赖项的 Autowiring 候选者的 bean

转载 作者:太空宇宙 更新时间:2023-11-04 13:03:40 25 4
gpt4 key购买 nike

我正在尝试运行网络应用程序,但遇到了一些问题。基本上我有一个 Controller 和一个进程,它们共享一个队列。

Controller 管理上传到服务器的文件并将它们放入队列中。另一方面,该进程获取队列中的文件并将它们用于其他用途。

我已将队列定义为 LinkedBlockingQueue 并在两者上都添加了注释 @Resource,但是当我运行应用程序时,出现以下异常:

Error creating bean with name 'csvQueueConsumerBean': Injection of resource 
dependencies failed; nested exception is
org.springframework.beans.factory.NoSuchBeanDefinitionException:
No qualifying bean of type [java.util.concurrent.LinkedBlockingQueue] found for
dependency: expected at least 1 bean which qualifies as autowire candidate for this
dependency.

两个类的代码如下:

@RestController
@RequestMapping("/upload")
public class FileUploadControllerW {

@Resource
protected LinkedBlockingQueue<QueueObject> csvQueue;

...
}

@Component
public class CsvQueueConsumerBean{

@Resource
protected LinkedBlockingQueue<QueueObject> csvQueue;

...
}

仅供记录,这两个类不在同一个包中。

最佳答案

这样做的原因是 Spring 上下文无法连接名为的 Bean

csvQueueConsumerBean

您需要在 Spring 配置文件中初始化其 LinkedBlockingQueue 依赖项,如下所示:

@Bean
public LinkedBlockingQueue<QueueObject> linkedBlockingQueue(){
LinkedBlockingQueue<QueueObject> blockingQueue = new LinkedBlockingQueue<QueueObject>();
// do what you need here...
return blockingQueue;
}

关于java - Spring @Resource 期望至少有 1 个有资格作为此依赖项的 Autowiring 候选者的 bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34696160/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com