Method method;
if (createMethod.contains(".")) {
String methodName = createMethod.substring(createMethod.lastIndexOf(".") + 1, createMethod.length());
String typeName = createMethod.substring(0, createMethod.lastIndexOf("."));
DozerClassLoader loader = BeanContainer.getInstance().getClassLoader();
Class type = loader.loadClass(typeName);
method = findMethod(type, methodName);
} else {
method = findMethod(actualClass, createMethod);
}
return ReflectionUtils.invoke(method, null, null);