Spring aop 内部调用、自调用不生效问题与解决方案

Stella981
• 阅读 1029

场景

使用 spring cache 框架时 服务类内部方法调用并不触发缓存动作

演示

[[@Service](http://my.oschina.net/service)](http://my.oschina.net/service)
public class CacheTestService {


    @Cacheable(value = "test_cache", key = "'method'")
    public String method() {
        System.out.println("method");
        return method1(1) + "_" +
                method2(2) + "_" +
                method3(3) + "_" +
                method4(4)
                ;
    }

    @Cacheable(value = "test_cache", key = "'method'+#i")
    public String method1(int i) {
        System.out.println("method1");
        return "method1_" + i;
    }

    @Cacheable(value = "test_cache", key = "'method'+#i")
    protected String method2(int i) {
        System.out.println("method2");
        return "method2_" + i;
    }

    @Cacheable(value = "test_cache", key = "'method'+#i")
    String method3(int i) {
        System.out.println("method3");
        return "method3_" + i;
    }

    @Cacheable(value = "test_cache", key = "'method'+#i")
    private String method4(int i) {
        System.out.println("method4");
        return "method4_" + i;
    }
}

查看redis

127.0.0.1:6379> keys cache:*
1) "cache://test_cache:method"

可以看到 method1、method2、method3、method4 方法的缓存并没有生效

原因:

注意和限制 基于 proxy 的 spring aop 带来的内部调用问题 上面介绍过 spring cache 的原理,即它是基于动态生成的 proxy 代理机制来对方法的调用进行切面,这里关键点是对象的引用问题,如果对象的方法是内部调用 (即 this 引用)而不是外部引用,则会导致 proxy 失效,那么我们的切面就失效,也就是说上面定义的各种注释包括 @Cacheable、@CachePut 和 @CacheEvict 都会失效

解决方案

public interface BeanSelfAware {
    void setSelf(Object proxyBean);  
}  


@Component
public class InjectBeanSelfProcessor implements BeanPostProcessor, ApplicationContextAware {
    private ApplicationContext context;
    //① 注入ApplicationContext  
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        this.context = applicationContext;  
    }  
    public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {  
        if(!(bean instanceof BeanSelfAware)) { //② 如果Bean没有实现BeanSelfAware标识接口 跳过  
            return bean;  
        }  
        if(AopUtils.isAopProxy(bean)) { //③ 如果当前对象是AOP代理对象,直接注入
            ((BeanSelfAware) bean).setSelf(bean);  
        } else {  
            //④ 如果当前对象不是AOP代理,则通过context.getBean(beanName)获取代理对象并注入  
            //此种方式不适合解决prototype Bean的代理对象注入  
            ((BeanSelfAware)bean).setSelf(context.getBean(beanName));  
        }  
        return bean;  
    }  
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {  
        return bean;  
    }  
}  

服务类:

@Service
public class CacheTestService implements BeanSelfAware {


    @Cacheable(value = "test_cache", key = "'method'")
    public String method() {
        System.out.println("method");
        return proxySelf.method1(1) + "_" +
                proxySelf.method2(2) + "_" +
                proxySelf.method3(3) + "_" +
                proxySelf.method4(4)
                ;
    }

    @Cacheable(value = "test_cache", key = "'method'+#i")
    public String method1(int i) {
        System.out.println("method1");
        return "method1_" + i;
    }

    @Cacheable(value = "test_cache", key = "'method'+#i")
    protected String method2(int i) {
        System.out.println("method2");
        return "method2_" + i;
    }

    @Cacheable(value = "test_cache", key = "'method'+#i")
    String method3(int i) {
        System.out.println("method3");
        return "method3_" + i;
    }

    @Cacheable(value = "test_cache", key = "'method'+#i")
    private String method4(int i) {
        System.out.println("method4");
        return "method4_" + i;
    }


    CacheTestService proxySelf;

    @Override
    public void setSelf(Object proxyBean) {
        this.proxySelf = (CacheTestService) proxyBean;
    }
}

再次查看 redis

127.0.0.1:6379> keys cache:*
1) "cache://test_cache:method1"
2) "cache://test_cache:method"

方法 method1 缓存动作成功执行,但是以protected、默认、private修饰的方法签名并没有生效 因此 此方案还需注意使用public修饰被调用方法

...

骚年,你以为这样就完了? 不 还有坑!

启用 aop 时 请使用

    <!-- 用这个 -->
    <aop:aspectj-autoproxy proxy-target-class="true" /> 
   <!-- 不要用这个 -->
    <!--<aop:config proxy-target-class="true"  />-->

over

参考资料

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
3年前
Java日期时间API系列36
  十二时辰,古代劳动人民把一昼夜划分成十二个时段,每一个时段叫一个时辰。二十四小时和十二时辰对照表:时辰时间24时制子时深夜11:00凌晨01:0023:0001:00丑时上午01:00上午03:0001:0003:00寅时上午03:00上午0
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这