• Springboot 两个Bean之间转换


    import org.springframework.beans.BeansException;
    import org.springframework.beans.FatalBeanException;
    import org.springframework.util.Assert;
    
    import java.beans.PropertyDescriptor;
    import java.lang.reflect.Method;
    import java.lang.reflect.Modifier;
    
    public class BeanCopyUtils extends org.springframework.beans.BeanUtils{
        public static void copyBean(Object source, Object target) throws BeansException {
            Assert.notNull(source, "Source must not be null");
            Assert.notNull(target, "Target must not be null");
            Class<?> actualEditable = target.getClass();  
            PropertyDescriptor[] targetPds = getPropertyDescriptors(actualEditable);  
            for (PropertyDescriptor targetPd : targetPds) {  
              if (targetPd.getWriteMethod() != null) {  
                PropertyDescriptor sourcePd = getPropertyDescriptor(source.getClass(), targetPd.getName());  
                if (sourcePd != null && sourcePd.getReadMethod() != null) {  
                  try {  
                    Method readMethod = sourcePd.getReadMethod();  
                    if (!Modifier.isPublic(readMethod.getDeclaringClass().getModifiers())) {  
                      readMethod.setAccessible(true);  
                    }  
                    Object value = readMethod.invoke(source); 
                    if (value != null) {  
                      Method writeMethod = targetPd.getWriteMethod();  
                      if (!Modifier.isPublic(writeMethod.getDeclaringClass().getModifiers())) {  
                        writeMethod.setAccessible(true);  
                      }  
                      writeMethod.invoke(target, value);  
                    }  
                  } catch (Throwable ex) {  
                    throw new FatalBeanException("Could not copy properties from source to target", ex);
                  }  
                }  
              }  
            } 
        } 
    }
  • 相关阅读:
    展示
    发布说明
    团队作业Week14
    Scrum Meeting NO.10
    Scrum Meeting NO.9
    Scrum Meeting NO.8
    Scrum Meeting NO.7
    Scrum Meeting NO.6
    ES6/ES2015核心内容
    用React & Webpack构建前端新闻网页
  • 原文地址:https://www.cnblogs.com/sunxun001/p/13085147.html
Copyright © 2020-2023  润新知