spring中proceedingjoinpoint修改参数之道

在处理切面逻辑时,我们需要对方法参数进行修改,以便注入额外信息或控制执行流。proceedingjoinpoint 提供了 getargs() 方法,可以访问原始参数数组。

示例代码:

public object handle(proceedingjoinpoint thisjoinpoint) throws throwable {
    object[] objects = thisjoinpoint.getargs();
    for (int i = 0; i < objects xss=removed xss=removed xss=removed xss=removed xss=removed>  登录后复制   

问题:

以上代码中,data类型被修改为jsonobject,导致与原始对象不一致。

解答:

if(objects[i] instanceof User){
    ((User) objects[i]).setSex(20)
}
登录后复制

此处建议使用 instanceof 判断对象类型并进行强转后,再设置属性。这样可以保持对象的原始类型,同时修改所需值。

以上就是Spring AOP中如何正确修改ProceedingJoinPoint的参数?的详细内容,更多请关注慧达安全导航其它相关文章!

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部