Look at following class (please note, that it is not a singleton):
public MyClass() {
@Inject private A a;
@Inject private B b;
}
What object will be created first a
or b
?
Is there a possibility of determine the order of creating objects?