我的类结构如下所示:
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 吗?