a best practice in Google Guice is to Inject Only Direct Dependencies. But if I use the following example code, how could I create an instance of account in class Customer?
@Provides
Account providePurchasingAccount(Customer customer) {
return customer.getPurchasingAccount();
}
The problem is, that Guice always try to get a new Account by calling providePurchasingAccount(), which results in a circular references.
Thanks.