私は以下のようなクラス構造を持っています:
class Base {}
class ChildA extends Base {}
class ChildB extends Base {}
私はこれを私のアプリケーションコードで取得しました:
Base theObj = null;
if( str.equalsIgnoreCase("object_A") == true ) {
theObj = new ChildA();
} else {
theObj = new ChildB();
}
SpringでBeanを構成する方法を教えてください。