Spring this调用当前类方法无法拦截的示例代码


Posted in Java/Android onMarch 20, 2022

先给出代码示例

package com.example.demo.service;
import org.springframework.stereotype.Service;
@Service
public class ProxyService {
    public void  testA(){
        System.out.println("进入A");
        this.testB();
    }
    public void testB() {
        System.out.println("进入b");
    }

}
package com.example.demo.annotation;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class AspectjTest {
    @Around("execution(* com.example.demo.service.ProxyService.testB())")
    public void recordProxy(ProceedingJoinPoint joinPoint) throws Throwable {
        long start = System.currentTimeMillis();
        joinPoint.proceed();
        long end = System.currentTimeMillis();
        System.out.println("花费时间:"+(end-start));
    }
}
package com.example.demo.api;
import com.example.demo.service.ProxyService;
import com.example.demo.service.UserService;
import org.springframework.aop.framework.AopContext;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PostMapping;
@Controller
public class ProxyApi {
//    @Autowired
//    ProxyService proxyService1;
    @Autowired
    private ApplicationContext applicationContext;
    @PostMapping("/proxy")
    public String test1() {
        ProxyService proxyService1 =  applicationContext.getBean(ProxyService.class);;
        proxyService1.testA();
        return "string";
    }
}

运行上面的代码会发现 配置aop 拦截方法不会被执行

Spring this调用当前类方法无法拦截的示例代码

我们通过debug 查看这个proxyService1 和this的区别,看看他们的值是什么

Spring this调用当前类方法无法拦截的示例代码

Spring this调用当前类方法无法拦截的示例代码

发现不一样,其实这就是问题的原因。

1、当我们在aop配置拦截的时候会指定类下面的方法路径,在spring启动的时候会先去加载这个ProxyService类,生成一个bean,但是因为你用aop配置了,所以需要代理这个ProxyService类,所以最终存在spring容器中的bean对象就是被代理后的bean对象。所以,我们在用容器获取bean或者用依赖注入获取bean的地址路径显示的是被代理后的bean 。
2、this获取的当前对象方法的一个引用,所以在调用testB方法的时候用的不是被代理的对象,自热不会经过aop拦截,原理和我们使用普通动态代理一样,只能是代理对象才能走自定义的方法。
3、可以通过debug 查看当ProxyService类被代理前和后的zhi值

Spring this调用当前类方法无法拦截的示例代码

Spring this调用当前类方法无法拦截的示例代码

发现是和之前的debug截图里面的值相符合的哈。

解决方法,就是在调用testB方法的时候用spring容器里的bean对象

@Service
public class ProxyService {
    @Autowired
    private  ProxyService proxyService;
    
    public void  testA(){
        System.out.println("进入A");
        proxyService.testB();
    }
    public void testB() {
        System.out.println("进入b");
}

或者

@Service
public class ProxyService {
    public void  testA(){
        System.out.println("进入A");
        ProxyService currentProxy = (ProxyService) AopContext.currentProxy();
        currentProxy.testB();
    }
    public void testB() {
        System.out.println("进入b");
    }
}

最终结果正确

Spring this调用当前类方法无法拦截的示例代码

到此这篇关于Spring this调用当前类方法无法拦截的文章就介绍到这了,更多相关Spring this无法拦截内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Java/Android 相关文章推荐
Java Shutdown Hook场景使用及源码分析
Jun 15 Java/Android
JPA 通过Specification如何实现复杂查询
Nov 23 Java/Android
SpringCloud Feign请求头删除修改的操作代码
Mar 20 Java/Android
SpringBoot2零基础到精通之数据库专项精讲
Mar 22 Java/Android
java后台调用接口及处理跨域问题的解决
Mar 24 Java/Android
Spring Security使用单点登录的权限功能
Apr 03 Java/Android
Java 超详细讲解十大排序算法面试无忧
Apr 08 Java/Android
Java 多态分析
Apr 26 Java/Android
Java Spring Lifecycle的使用
May 06 Java/Android
JDK8中String的intern()方法实例详细解读
Sep 23 Java/Android
Android实现获取短信验证码并自动填充
May 21 Java/Android
SpringCloud Feign请求头删除修改的操作代码
Mar 20 #Java/Android
JavaWeb实现显示mysql数据库数据
关于Mybatis中SQL节点的深入解析
springboot 自定义配置 解决Boolean属性不生效
Mar 18 #Java/Android
使用Java去实现超市会员管理系统
Mar 18 #Java/Android
详解Spring Security中的HttpBasic登录验证模式
RestTemplate如何通过HTTP Basic Auth认证示例说明
You might like
php防止表单重复提交实例讲解
2019/02/11 PHP
Javascript的IE和Firefox兼容性汇编
2006/07/01 Javascript
分享精心挑选的12款优秀jQuery Ajax分页插件和教程
2012/08/09 Javascript
jquery、js操作checkbox全选反选
2014/03/12 Javascript
一个简单的Node.js异步操作管理器分享
2014/04/29 Javascript
javascript实现可全选、反选及删除表格的方法
2015/05/15 Javascript
JS实现的仿东京商城菜单、仿Win右键菜单及仿淘宝TAB特效合集
2015/09/28 Javascript
探究Javascript模板引擎mustache.js使用方法
2016/01/26 Javascript
AngularJS2 与 D3.js集成实现自定义可视化的方法
2017/12/01 Javascript
React key值的作用和使用详解
2018/08/23 Javascript
在elementui中Notification组件添加点击事件实例
2020/11/11 Javascript
Python原始字符串(raw strings)用法实例
2014/10/13 Python
python中获得当前目录和上级目录的实现方法
2017/10/12 Python
python批量读取txt文件为DataFrame的方法
2018/04/03 Python
python编写暴力破解zip文档程序的实例讲解
2018/04/24 Python
Flask模拟实现CSRF攻击的方法
2018/07/24 Python
python面向对象入门教程之从代码复用开始(一)
2018/12/11 Python
Django实现发送邮件功能
2019/07/18 Python
pywinauto自动化操作记事本
2019/08/26 Python
python将数组n等分的实例
2019/12/02 Python
pytorch 修改预训练model实例
2020/01/18 Python
Python批量启动多线程代码实例
2020/02/18 Python
使用Django xadmin 实现修改时间选择器为不可输入状态
2020/03/30 Python
Etam俄罗斯:法国女士内衣和家居服网上商店
2019/10/30 全球购物
Farfetch中文官网:奢侈品牌时尚购物平台
2020/03/15 全球购物
提高EJB性能都有哪些技巧
2012/03/25 面试题
英语专业个人求职自荐信
2013/09/21 职场文书
2014大学生中国梦主题教育学习思想汇报
2014/09/10 职场文书
python opencv人脸识别考勤系统的完整源码
2021/04/26 Python
css背景和边框标签实例详解
2021/05/21 HTML / CSS
vue+springboot实现登录验证码
2021/05/27 Vue.js
Java多条件判断场景中规则执行器的设计
2021/06/26 Java/Android
vue中利用mqtt服务端实现即时通讯的步骤记录
2021/07/01 Vue.js
使用Ajax实现进度条的绘制
2022/04/07 Javascript
5个pandas调用函数的方法让数据处理更加灵活自如
2022/04/24 Python
python使用BeautifulSoup 解析HTML
2022/04/24 Python