I have a the following classes StorageProxy.java (Interface) StorageProxyImpl1.java (Implementation1 of StorageProxy Interface)
public class StorageProxyImpl1 extends StorageProxy{
public void init(String key){
....
}
}
public class Resource1{
private StorageProxy sp;
...
}
public class Resource2{
private StorageProxy sp;
...
}
I have a main method in the Application class that initializes and uses Resource1 and Resource2.
public class MyApp{
public static void main(String args[]){
Resource1 r1 = new Resource1();
Resource2 r2 = new Resource2();
runApp(r1,r2);
}
public void runApp(Resource1 r1, Resource2 r2){ // Makes use of r1 and r2
...
}
}
I want to guice for dependency injection for the StorageProxy so that I do not have much pain when I create new implementations. I want Resource1 and Resource2 to use the same object of StorageProxy (i.e it should be Singleton). It is critical that init is separate from the constructor. Summing up, I need to create an instance of StorageProxyImpl1 and call StorageProxyImpl1.init(String) on it in the main method and this instance should be shared by Resource1 and Resource2. How to do this?
The question asked in Guice: How to get instance of Singleton without injector or using Constructor Injection is little bit on the high level and I find it difficult to understand without a concrete example.
You can use the provider interface
A working example: