自動配線された Bean を持つ Bean があります。
次のようなものです:
class A
{
@Autowired
B b;
@Autowired
C c;
void function()
{
// here I would like to do something when I an sure the wiring has been done
// being sure that I won't wait forever
...
何かが存在しなければならないのですが、見つかりません。
ご協力いただきありがとうございます!