首页 > 编程语言 > 详细

Springboot 两个Bean之间转换

时间:2020-06-10 15:44:30      阅读:328      评论:0      收藏:0      [点我收藏+]
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);
              }  
            }  
          }  
        } 
    } 
}

 

Springboot 两个Bean之间转换

原文:https://www.cnblogs.com/sunxun001/p/13085147.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!