spring中proceedingjoinpoint修改参数之道
在处理切面逻辑时,我们需要对方法参数进行修改,以便注入额外信息或控制执行流。proceedingjoinpoint 提供了 getargs() 方法,可以访问原始参数数组。
示例代码:
public object handle(proceedingjoinpoint thisjoinpoint) throws throwable { object[] objects = thisjoinpoint.getargs(); for (int i = 0; i < objects.length; i++) { object o = objects[i]; string json = jsonobject.tojsonstring(o); jsonobject data = jsonobject.parseobject(json); data.put("sex", 20); objects[i] = data; } system.out.println(jsonobject.tojsonstring(objects)); object result = thisjoinpoint.proceed(objects); system.out.println(result); return result; }
问题:
以上代码中,data类型被修改为jsonobject,导致与原始对象不一致。
解答:
if(objects[i] instanceof User){ ((User) objects[i]).setSex(20) }
此处建议使用 instanceof 判断对象类型并进行强转后,再设置属性。这样可以保持对象的原始类型,同时修改所需值。