前言
最近工作上遇到的日志需求:用户进行修改数据时,需要记录用户修改了哪些字段,修改前,修改后的值分别是什么。
一、核心判断逻辑
判断空的逻辑,可以根据业务调整。
private static List<String> getFiledName(Object o1, Object o2) throws Exception {
List<String> result = new ArrayList<>();
Field[] fields1 = o1.getClass().getDeclaredFields();
Field[] fields2 = o1.getClass().getDeclaredFields();
for (int i = 0; i < fields1.length; i++) {
fields1[i].setAccessible(true);
fields2[i].setAccessible(true);
Object temp1 = fields1[i].get(o1);
Object temp2 = fields2[i].get(o2);
if ((Objects.isNull(temp1) && Objects.isNull(temp2))) {
continue;
}
if ((Objects.nonNull(temp1) && Objects.nonNull(temp2) && temp1.equals(temp2))) {
continue;
}
result.add("存在不同的值:" + fields1[i].getName() + ",前者值:" + (temp1 == null ? null : String.valueOf(temp1)) + ",后者值:" + (temp2 == null ? null : String.valueOf(temp2)));
}
return result;
}
二、测试示例
public static void main(String[] args) {
ListStream stream1 = new ListStream();
stream1.setId(1L);
stream1.setAge(25);
stream1.setName("zSan");
stream1.setRemark("stream1");
ListStream stream2 = new ListStream();
stream2.setId(2L);
stream2.setAge(25);
stream2.setName("zzLi");
stream2.setRemark("stream2");
try {
getFiledName(stream1, stream2).forEach(System.out::println);
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
执行结果
总结
想把这个需求做成一个通用的注解。 后续不忙的话,再更新这篇文章吧。哈哈哈
|