java基础----利用注解和反射把map封装成bean

利用注解可以解决属性名和map键值不匹配的问题

public class mapToBean {
    public static void main(String[] args) {
        Map<String,Object> map=new HashMap<>();
        map.put("empno",35232);
        map.put("ename","张三");
        map.put("job","工作");
        Employee employee = mapToBean(map, Employee.class);
        System.out.println(employee);


    }
    public static <T> T mapToBean(Map<String,Object> map,Class<T> cls){

        T t=null;
        try {
            //创建实例
             t = cls.newInstance();
            //获取类上的所有字段
            Field[] fields = cls.getDeclaredFields();
            if(fields !=null && fields.length>0){
                //遍历字段数组
                for (Field field : fields) {
                    if(field.isAnnotationPresent(Column.class)){
                        Column annotation = field.getAnnotation(Column.class);
                        if(annotation !=null){
                            //获取值
                            String key = annotation.value();
                            //将注解中的值作为map的键查找map中的值
                            Object value = map.get(key);
                            if(value !=null){
                                //说明map中包含这个注解作为键的值,那么我们就映射到bean中
                                String fieldName = field.getName();
                                //通过内省映射
                                PropertyDescriptor pd=new PropertyDescriptor(fieldName,cls);
                                Method writeMethod = pd.getWriteMethod();
                                writeMethod.invoke(t,value);
                            }
                        }
                    }else {
                        //如果不存在注解,那就用字段名去map中取值
                        String name = field.getName();
                        Object value = map.get(name);
                        if(value !=null){
                            //说明map中包含这个注解作为键的值,那么我们就映射到bean中
                            String fieldName = field.getName();
                            //通过内省映射
                            PropertyDescriptor pd=new PropertyDescriptor(fieldName,cls);
                            Method writeMethod = pd.getWriteMethod();
                            writeMethod.invoke(t,value);
                        }
                    }
                }


            }




        } catch (Exception e) {
            e.printStackTrace();
        }


        return t;
    }
}

你可能感兴趣的:(java基础)