java 实体类字段对比工具类

实体类

@DescriptorFields("客户名称")
private String customerName;

实体类字段检测工具类

import com.alibaba.fastjson.JSONObject;
import com.sun.org.glassfish.gmbal.DescriptorFields;
import java.lang.reflect.Field;

/* *
 * @Author 15701
 * @Description 实体字段描述检测工具类
 * @Date  2022/12/13
 **/
public class DescriptorFieldUtils {

    public static JSONObject scanComparison(Class c, Object source, Object target){
        JSONObject json = new JSONObject();
        boolean flag = false;
        String msg = "";
        /**********************************************字段操作*********************************************************/
        //getField(String name) 从某个类的所有的公共(public)的字段,包括父类中的字段获得特定的字段
        //getFields 获得某个类的所有的公共(public)的字段,包括父类中的字段
        //getDeclaredField(String name) 获取类public特定的字段
        //getDeclaredFields() 获得某个类的所有声明的字段,即包括public、private和proteced,但是不包括父类的申明字段。
        Field[] fields = c.getDeclaredFields();
        for(Field field:fields){
            //getAnnotation(Class) 得到指定的注解对象
            //getAnnotations  可以得到继承的注解列表
            //getDeclaredAnnotation(Class) 不能得到继承得到的特定注解
            //getDeclaredAnnotations 不能得到继承的特定注解列表
            DescriptorFields descriptorFields= field.getAnnotation(DescriptorFields.class);
            if(descriptorFields != null){
                //获取描述字段的注解
                String fieldDes = descriptorFields.value()[0];
                //获取字段名
                String fieldName = field.getName();
                Object fieldValue = ReflectUtil.getFieldValue(source, fieldName);
                Object currFieldValue = ReflectUtil.getFieldValue(target, fieldName);
                if(!fieldValue.equals(currFieldValue)){
                    flag = true;
                    msg+=fieldDes+"、";
                }

            }
        }
        json.put("success", flag);
        json.put("msg", msg);
        return json;
    }
}

反射工具类

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Locale;
import lombok.extern.slf4j.Slf4j;

/**
 * 反射工具类
 */
@Slf4j
public final class ReflectUtil {

    /**
     * 私有化构造方法
     */
    private ReflectUtil() {

    }

    /**
     * 根据类名反射生成class
     *
     * @param className 类名
     * @return class
     */
    public static Class<?> getClass(String className) {
        try {
            return Class.forName(className);
        } catch (ClassNotFoundException e) {
            log.error("Reflect class failed! Class name is " + className, e);
            throw new RuntimeException("classnotfound", e);
        }
    }

    /**
     * 获得类的实例
     *
     * @param className 类名
     * @return 实例
     */
    public static Object newInstance(String className) {
        return newInstance(getClass(className));
    }

    /**
     * 获得类的实例
     *
     * @param c class
     * @return 实例
     */
    public static Object newInstance(Class<?> c) {
        try {
            return c.newInstance();
        } catch (InstantiationException e) {
            log.error("New instance failed! Class is " + c.getClass(), e);
            throw new RuntimeException("newInstance", e);
        } catch (IllegalAccessException e) {
            log.error("New instance failed! Class is " + c.getClass(), e);
            throw new RuntimeException("newInstance", e);
        }
    }

    /**
     * 获取class中指定名称的method对象(只是public的)
     *
     * @param c          class
     * @param methodName 方法名
     * @param params     参数
     * @return method
     */
    public static Method getMethod(Class<?> c, String methodName, Class<?>... params) {
        try {
            return c.getMethod(methodName, params);
        } catch (SecurityException | NoSuchMethodException e) {
            log.error("Get method failed! Class is " + c.getClass() + ", method name is " + methodName
                    + ", parameters classes are " + params, e);
            throw new RuntimeException("getMethod", e);
        }
    }

    /**
     * 反射方法获取返回值
     *
     * @param methodName 方法名
     * @param obj        对象
     * @param params     方法参数
     * @return 调用方法获得的返回值
     */
    public static Object invokeMethod(String methodName, Object obj, Object... params) {
        // 获取参数列表
        Class<?>[] paramClasses = null;
        if (params != null) {
            paramClasses = new Class<?>[params.length];
            for (int i = 0; i < paramClasses.length; i++) {
                paramClasses[i] = params[i].getClass();
            }
        }
        Method method = getMethod(obj.getClass(), methodName, paramClasses);

        return invokeMethod(method, obj, params);
    }

    /**
     * 反射方法获取返回值
     *
     * @param method 方法
     * @param obj    对象
     * @param params 方法参数
     * @return 调用方法获得的返回值
     */
    public static Object invokeMethod(Method method, Object obj, Object... params) {
        try {
            return method.invoke(obj, params);
        } catch (IllegalArgumentException | IllegalAccessException | InvocationTargetException e) {
            log.error("Invoke method failed! Method is " + method + ", object is " + obj + ", parameters are " + params,
                    e);
            throw new RuntimeException("invokeMethod", e);
        }
    }

    /**
     * 为类中某个成员变量赋值,该成员必须提供它的set方法
     *
     * @param obj        对象实例
     * @param fieldName  字段名称
     * @param fieldValue 字段值
     */
    public static void setFieldValue(Object obj, String fieldName, Object fieldValue) {
        String methodName = "set" + firstLetterToUppercase(fieldName);
        Method method = getMethod(obj.getClass(), methodName, fieldValue.getClass());
        invokeMethod(method, obj, fieldValue);
    }

    /**
     * 获取类中某个成员变量的值,该成员必须提供它的get方法
     *
     * @param obj       对象实例
     * @param fieldName 字段名称
     * @return 字段值
     */
    public static Object getFieldValue(Object obj, String fieldName) {
        String methodName = "get" + firstLetterToUppercase(fieldName);
        Method method = getMethod(obj.getClass(), methodName);
        return invokeMethod(method, obj);
    }

    /**
     * 首字母大写
     *
     * @param str 首字母
     * @return String
     */
    private static String firstLetterToUppercase(String str) {
        if (null == str) {
            return null;
        }
        StringBuilder builder = new StringBuilder(str.length());
        char c = str.charAt(0);
        builder.append(String.valueOf(c).toUpperCase(Locale.getDefault()));
        if (str.length() > 0) {
            builder.append(str.substring(1));
        }
        return builder.toString();
    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值