import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; public class Excle2EntityUtil<T> { private T entity; public Excle2EntityUtil(T entity){ this.entity = entity; } public void doInitEntity(String methodName , Object obj) throws SecurityException, NoSuchMethodExcepti...