I'm not familiar with Wicket, but I assume that you've got various things on your Wicket web page annotated with @Inject, yes?
So, you have a few options; in order of preference:
- If you're
@Injecting your User, one option is to annotate the constructor of A with @Inject and then in your page, just @Inject either an A or a Provider<A> into web page.
- You can
@Inject into your web page a MembersInjector<A> (call it aMembersInjector) and then after you create your A object call aMembersInjector.injectMembers(a) to cause all the setter injection to happen.
- You can
@Inject into your web page the Injector and call Injector.injectMembers(a) after you create your A.