If your Injector is in a singleton or the ServletContext, just grab it
out and call:
getMemberInjector(this.getClass()).injectMembers(this);
I do this in the constructor or the setPageContext method or any of
the other methods. Also, watch out for tag instance pooling depending
on your use cases.
-bp