I have a bean with autowired beans.
So something like:
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
...
Something has to exist, but I can't find it.
Thanks for your help!