2015-08-08 90 views
0

當我從構造函數中引用bean時,它是null,但是當從其他方法引用它時,它很好。@Autowired bean在構造函數中被引用時爲空

+1

你真的會從提供更多的細節中受益。你可以分享的任何代碼? – johnnyRose

+0

可能的重複http://stackoverflow.com/questions/6335975/autowired-bean-is-null-when-referenced-in-the-constructor-of-otherother-bean tldr:嘗試使用@PostConstruct如果你需要在類初始化期間訪問bean – lux

回答

0

要在構造函數是指一個bean,你需要

  1. 標註與@Autowired
  2. 構造函數傳遞bean作爲參數的構造

更多細節可以確診,如果你分享一些示例代碼。

相關問題