Java 类动态添加属性字段的操作

 更新时间:2021年02月18日 14:45:09   作者:前尘忆梦  
这篇文章主要介绍了Java 类动态添加属性字段的操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

说明:

做项目中遇到一种场景,需要根据查询时间段, 获取时间段中中每个月份对应的金额(费用统计)。

如截图中的两列

因为列是动态的, 首先想到的就是后天拼接JSON格式字符串, 然后返回到前台, 组装表头及内容。

但是当前系统中easyUI版本为1.2,并不支持 data属性(官方从1.3.2开始支持)。所以只能返回list<T> 格式。

网上一搜相关代码很多, 看客可以自己搜索一下。 我这里记录一下我当时使用场景及用法,已备以后使用。

1.需要引用cglib jar包, 我用的版本是2.2

2.建一个实体对象 DynamicBean.java 。主要用来处理对象。

public class DynamicBean {
 private Object object = null; // 动态生成的类 
 private BeanMap beanMap = null; // 存放属性名称以及属性的类型 
 public DynamicBean() {
  super();
 }
 
 public DynamicBean(Map propertyMap) {
  this.object = generateBean(propertyMap);
  this.beanMap = BeanMap.create(this.object);
 }
 
 /**
  * @param propertyMap
  * @return
  */
 private Object generateBean(Map propertyMap) {
  BeanGenerator generator = new BeanGenerator();
  Set keySet = propertyMap.keySet();
  for (Iterator<String> i = keySet.iterator(); i.hasNext();) {
   String key = (String) i.next();
   generator.addProperty(key, (Class) propertyMap.get(key));
  }
  return generator.create();
 }
 
 /**
  * ��bean���Ը�ֵ
  * @param property ������
  * @param value ֵ
  */
 public void setValue(Object property, Object value) {
  beanMap.put(property, value);
 }
 
 /**
  * ͨ���������õ�����ֵ
  * @param property ������
  * @return ֵ
  */
 public Object getValue(String property) {
  return beanMap.get(property);
 }
 
 /**
  * 返回新生成的对象
  * @return
  */
 public Object getObject() {
  return this.object;
 }
}

3. 原来对象, 及需要拼接到对象中的属性字段集合处理方法。

/**
*参数说明:
* object : 查询结果数组中对象。
* moneyMap : 为对象对应所有月份数据集合
* 解释:已经查询出一组账单对象集合List<Bill> , 而moneyMap为对象中的一个属性 
* Map<String,Bigdecimal>, 存放了月份及金额
*/
private Object dynamicClass(Object object, Map<String, BigDecimal> moneyMap) throws Exception {
  // 字段 - 值 集合
  HashMap<String, Object> returnMap = new HashMap<String, Object>();
  // 字段 - 字段类型 集合
  HashMap<String, Object> typeMap = new HashMap<String, Object>();
  // 获取传入类
  Class<? extends Object> type = object.getClass();
  BeanInfo beanInfo = Introspector.getBeanInfo(type);
  PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
  // 获取对象中已存在的数据
  for (int i = 0; i < propertyDescriptors.length; i++) {
   PropertyDescriptor descriptor = propertyDescriptors[i];
   String propertyName = descriptor.getName();
   if (!propertyName.equals("class") && !propertyName.equals("monthMap")) {
    Method readMethod = descriptor.getReadMethod();
    Object result = readMethod.invoke(object, new Object[0]);
    if (result != null) {
     returnMap.put(propertyName, result);
    } else {
     String propertyType = descriptor.getPropertyType().toString();
     if (propertyType.contains("java.math.BigDecimal")) {
      returnMap.put(propertyName, new BigDecimal(0));
     } else {
      returnMap.put(propertyName, "");
     }
    }
    typeMap.put(propertyName, descriptor.getPropertyType());
   }
  }
  // 获取月份数据, 变为字段属性
  Set<String> monthKeys = moneyMap.keySet();
  for (Iterator<String> it = monthKeys.iterator(); it.hasNext();) {
   String key = (String) it.next();
   // 字段类型
   typeMap.put(key, Class.forName("java.math.BigDecimal"));
   // 字段对应值
   returnMap.put(key, moneyMap.get(key));
  }
  // map转换成实体对象
  DynamicBean bean = new DynamicBean(typeMap);
  // 赋值
  Set<String> keys = typeMap.keySet();
  for (Iterator<String> it = keys.iterator(); it.hasNext();) {
   String key = (String) it.next();
   bean.setValue(key, returnMap.get(key));
  }
  Object obj = bean.getObject();
  return obj;
 }

做笔记使用, 说不定以后还会用到。

补充:java动态的生成类的属性、并赋值

1、springboot项目中,在build.gradle中,配置jar包

compile("commons-beanutils:commons-beanutils:1.9.3")
compile("cglib:cglib-nodep:3.2.4")

2、创建DynamicBean

import java.util.Map; 
import net.sf.cglib.beans.BeanGenerator;
import net.sf.cglib.beans.BeanMap; 
public class DynamicBean {
 
 /**
  * 目标对象
  */
 private Object target;
 /**
  * 属性集合
  */
 private BeanMap beanMap;
 
 public DynamicBean(Class superclass, Map<String, Class> propertyMap){
  this.target = generateBean(superclass, propertyMap);
  this.beanMap = BeanMap.create(this.target);
 }
 
 /**
  * bean 添加属性和值
  *
  * @param property
  * @param value
  */
 public void setValue(String property, Object value) {
  beanMap.put(property, value);
 }
 
 /**
  * 获取属性值
  *
  * @param property
  * @return
  */
 public Object getValue(String property) {
  return beanMap.get(property);
 }
 
 /**
  * 获取对象
  *
  * @return
  */
 public Object getTarget() {
  return this.target;
 }
 
 /**
  * 根据属性生成对象
  *
  * @param superclass
  * @param propertyMap
  * @return
  */
 private Object generateBean(Class superclass, Map<String, Class> propertyMap) {
  BeanGenerator generator = new BeanGenerator();
  if (null != superclass) {
   generator.setSuperclass(superclass);
  }
  BeanGenerator.addProperties(generator, propertyMap);
  return generator.create();
 }
}

3、创建ReflecUtil转换的工具类

import java.beans.PropertyDescriptor;
import java.util.HashMap;
import java.util.Map; 
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger; 
import org.apache.commons.beanutils.PropertyUtilsBean; 
import com.sunxung.factoring.entity.DynamicBean;
import com.sunxung.factoring.entity.attendanceManagement.AttendanceVo;
 
/**
 * @className:ReflectUtil
 * @description:动态生成类的属性、并且赋值
 * @date:2018年4月3日 下午2:33:10
 */
public class ReflectUtil {
 
 static Logger logger = LogManager.getLogger(ReflectUtil.class);
 
 @SuppressWarnings("rawtypes")
 public static Object getTarget(Object dest, Map<String, Object> addProperties) {
  PropertyUtilsBean propertyUtilsBean = new PropertyUtilsBean();
  PropertyDescriptor[] descriptors = propertyUtilsBean.getPropertyDescriptors(dest);
  Map<String, Class> propertyMap = new HashMap<>();
  for (PropertyDescriptor d : descriptors) {
   if (!"class".equalsIgnoreCase(d.getName())) {
    propertyMap.put(d.getName(), d.getPropertyType());
   }
  }
  // add extra properties
  addProperties.forEach((k, v) -> propertyMap.put(k, v.getClass()));
  // new dynamic bean
  DynamicBean dynamicBean = new DynamicBean(dest.getClass(), propertyMap);
  // add old value
  propertyMap.forEach((k, v) -> {
   try {
    // filter extra properties
    if (!addProperties.containsKey(k)) {
     dynamicBean.setValue(k, propertyUtilsBean.getNestedProperty(dest, k));
    }
   } catch (Exception e) {
    logger.error(e.getMessage(), e);
   }
  });
  // add extra value
  addProperties.forEach((k, v) -> {
   try {
    dynamicBean.setValue(k, v);
   } catch (Exception e) {
    logger.error(e.getMessage(), e);
   }
  });
  Object target = dynamicBean.getTarget();
  return target;
 }
 
 public static void main(String[] args) {
  AttendanceVo entity = new AttendanceVo();
  Map<String, Object> addProperties = new HashMap<>();
  addProperties.put("day31", "你好");
  AttendanceVo newVo = (AttendanceVo) getTarget(entity, addProperties);
  System.out.println(newVo.getDay0());
 }
}

4、在项目中动态生成属性并且赋值的使用

private AttendanceVo autoDetailNew(SearchAttendanceVo search, AttendanceVo att) {
  search.setDingdingUserId(att.getDingdingUserId());
  List<Attendance> detailList = attendanceMapper.findDetailList(search);
  Map<String, Object> addProperties = new HashMap<>();
  for (Attendance attendance : detailList) {
   addProperties.put("day" + DateUtil.getDayStringFormatYMD(attendance.getAttendanceDate()),
     attendance.getRemark());
  }
  AttendanceVo newVo = (AttendanceVo) ReflectUtil.getTarget(att, addProperties);
  return newVo;
 }

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。

相关文章

  • Druid连接池的自定义过滤功能实现方法

    Druid连接池的自定义过滤功能实现方法

    在数据密集型应用中,监控和分析数据库操作对于确保性能和稳定性至关重要,本文将探讨如何实现一个自定义的Druid过滤器来捕获数据库请求并进行日志记录,以辅助开发和维护工作,需要的朋友可以参考下
    2023-11-11
  • mybatis-plus  mapper中foreach循环操作代码详解(新增或修改)

    mybatis-plus mapper中foreach循环操作代码详解(新增或修改)

    这篇文章主要介绍了mybatis-plus mapper中foreach循环操作代码详解(新增或修改),本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-11-11
  • Springboot工具类FileCopyUtils使用教程

    Springboot工具类FileCopyUtils使用教程

    这篇文章主要介绍了Springboot内置的工具类之FileCopyUtils的使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧
    2022-12-12
  • sharding-jdbc实现分页查询的示例代码

    sharding-jdbc实现分页查询的示例代码

    sharding-jdbc是一个轻量级Java框架,它提供了分布式数据库中间件的功能,支持水平分表和分库分表,在分页查询方面,sharding-jdbc支持两种方式:基于物理分页和基于逻辑分页,本文给大家介绍sharding-jdbc如何实现分页查询,需要的朋友可以参考下
    2024-05-05
  • java线程封闭之栈封闭和ThreadLocal

    java线程封闭之栈封闭和ThreadLocal

    这篇文章主要介绍了java线程封闭之栈封闭和ThreadLocal,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2019-10-10
  • 详解spring security之httpSecurity使用示例

    详解spring security之httpSecurity使用示例

    这篇文章主要介绍了详解spring security之httpSecurity使用示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-08-08
  • velocity显示List与Map的方法详细解析

    velocity显示List与Map的方法详细解析

    以下是对velocity显示List与Map的方法进行了详细的介绍。需要的朋友可以过来参考下
    2013-08-08
  • Java实现多线程的上下文切换

    Java实现多线程的上下文切换

    这篇文章主要介绍了Java实现多线程的上下文切换操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2020-09-09
  • Spring框架的环境搭建和测试实现

    Spring框架的环境搭建和测试实现

    这篇文章主要介绍了Spring框架的环境搭建和测试实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-10-10
  • 从内存地址解析Java的static关键字的作用

    从内存地址解析Java的static关键字的作用

    这篇文章主要介绍了从内存地址解析Java的static关键字的作用,包括静态成员变量和静态方法等重要内容,需要的朋友可以参考下
    2015-10-10

最新评论