s,t为对象BeanUtils.copyProperties(s, t); 将给定源bean的属性值复制到目标bean中 public static void copyProperties(Object source, Object target) //source 源,target 目标 throws BeansException { copyProperties(source, target, null, (String[]) null); } BeanUtils.copyProperti…