将顺序指定为Spring@Autwire
我使用的是Spring框架4。
我有一个类(比如ClassA),其中使用了另一个类(比如ClassB)。ClassA的成员变量正在从ClassB获取值。ClassB有一个从属性文件读取数据的静态方法。在ClassB中,使用@Autowired
注释注入静态成员变量ApplicationContext
。
ApplicationContext
全部设置为从MessageSource
读取。
当ClassA标记为@Component
时,Spring加载ClassA,但当它尝试初始化成员变量时,它得到NullPointerException
,因为ApplicationContext
尚未初始化。
@DependsOn
注释,并将@Bean
指定为ApplicationContext
的getter方法。但它给出了以下例外:
Caused by: org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'applicationContext': Requested bean is currently in creation: Is there an unresolvable circular reference?
对这个问题有什么想法吗?
谢谢
解决方案
感谢您的评论。
我在Spring框架提供的一个批注中找到了解决方案。
@DependsOn
批注的解决方案起作用。实际上,当我使用ApplicationContext
的@Bean上述getter方法时,它触发了问题中提到的异常。然后,我阅读了@DependsOn
的documentation注释。它声明该注释适用于@Bean和@Component。作为ApplicationContext
被注入的类,我已经使ClassA@DependsOn
成为@Component
被注入的类,并且它起作用了。
再次感谢您的评论。
相关文章