Hi,
I've read this,
http://code.google.com/p/google-guice/wiki/InjectionPoints
and I've added my own injectors. Everything works fine.
BUT, I would like to inject members before calling the constructor
body, something like field initializer are called before constructor
body is called.
Is it possible ?
I don't find the "
MyClass(Injector injector){
super();
injector.injectMembers(this);
}
"
satisfactory. This is not "dependence" injection.
In fact I want to use my constructor to initialise my object using all
the available services. is there a "post_inject call" somewhere ?
Thx
--
You received this message because you are subscribed to the Google Groups
"google-guice" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-guice?hl=en.