method =
ObjectPropertyUtil.findMethod(obj.getClass(), methodName, args);
return method.invoke(obj, args);
} catch (NoSuchMethodException e) {
log.error(e);
throw new NoModuleException(e);
} catch (IllegalAccessException e) {
log.error(e);
throw new AppExceptin(e);
} catch (InvocationTargetException e) {
log.error(e);