原型bean中的单例bean为空

时间:2015-12-07 14:28:11

标签: java spring autowired

我正在尝试在原型bean中自动装配单个bean,如下所示:

@Component
@Scope("singleton")
class ComponentX {
}

@Component
@Scope("prototype")
class ComponentY {
  @Autowired
  private ComponentX x;
}

但是我得到null我需要在ComponentY中使用x。

我理解相反的事情,但我不明白为什么在我的情况下它不会让我。

知道如何克服这个问题吗?

提前致谢,

0 个答案:

没有答案