自己的写的代码中存在多个方法,类似这样。
public String a10100Process(String code) throws Exception {
A10100Request a10100Request = SpringUtil.getBean( "A10100Request", A10100Request.class);
………………………………
return a10100Request.toString();
}
public String a10101Process(String code) throws Exception {
A10101Request a10101Request = SpringUtil.getBean( "A10101Request", A10101Request.class);
………………………………
return a10101Request.toString();
}
我如何能够做到通过传入不同的code,实例化不同的对象。
换句话说红框中的内容是否是可以使用变量存储的,我自己试过使用Class.forName的方式获取到class是不能够作为类型来定义变量的。