用getBean(Task.clas)或者getModel(Task.clas,true)都可以。 true的意义在于可以跳过没这个字段的时候不报异常。 Class colType = table.getColumnType(attrName); if (colType == null) { if (skipConvertError) { continue ; } else { throw new ActiveRecordException("The model attribute " + attrName + " is not exists."); } }