// 如果属性名字不为空,说明使用的是setter注入方式
// 使用setter注入的时候,需要提供一个无参构造方法
if (t == null)
t = clazz.newInstance();
ReflectUtil ru = new ReflectUtil(t);
Method m = ru.getSetter(name);
if (m != null)
m.invoke(t, getBean(ref));
} else {
// 如果属性名字为空,说明使用的是构造器注入方式
// 使用构造器注入的时候,需要按照构造器参数列表顺序实例化
t = (T)getBean(ref);
argList.add(t.getClass());
initargList.add(t);
}
} else {
// 注入基本类型
String type = inj.getType();
String value = inj.getValue();
if (value == null) {
value = "";
}
String name = inj.getName();
if (name != null && !"".equals(name)) {
// 如果属性名字不为空,说明使用的是setter注入方式
// 使用setter注入的时候,需要提供一个无参构造方法
if (t == null)
t = clazz.newInstance();
ReflectUtil ru = new ReflectUtil(t);
Method m = ru.getMethod("set"
+ StringUtil.toUpCaseFirst(name));
if (m != null) {
if (IOCConfigConstant.INT_ARGTYPE
.equalsIgnoreCase(type)
|| "java.lang.Integer"