public Class MyClass1{
private ParentClass1 parentInstance;
private int i=1;
public MyClass1(ParentClass1 instance)
{
this.parentInstance=instance;
}
public int getI() {
return i;
}
public void setI(int i) {
this.i = i;
}
}
Now we have five child class which extends ParentClass1. Now in spring when are composing MyClass1 ,how we will determine which child instance out of five needs to be injected here (as it depends upon some runtime parameter depending on which we have to create child instance like if i=1 instantiate child1, if i=2 instantiate child2). Please Guide me if there is any way to configure the configuration file i.e spring-config.xml for above scenario ?
Edit:-
My question is how we will pass the argument in factory method .Assuming this parameter is coming from some value user selected on user interface and not know while setting up config file. Below is My factory, client and configuration file
Public class MYFactory
{
Public static getObject(int i)
{
if(i==1)
{
return childclass1;// will get from config file
}
if(i==2)
{
return childclass2;// will get from config file
}
//continued
}
}
Below is the code snippet from config file
<bean id="myfactory" class="package.MyFactory" factory-method="getObject">
</bean>
// i know we can provide constructor argument above but that will be static. This argument is supposed to come from value user selected on user interface
//Below is my client method
public static void main(String arrgs[])
{
ParentClass pc=(ParentClass)XMLBeanFactor.getbean("myfactory");// Please ignore the syntax just consider the logic
}
Now how i will pass the value of i from main method to factory method considering above example?