Spring Cache @Cacheable - not working while calling from another method of the same bean

后端 未结 9 1471
执念已碎
执念已碎 2020-11-27 10:06

Spring cache is not working when calling cached method from another method of the same bean.

Here is an example to explain my problem in clear way.<

9条回答
  •  执笔经年
    2020-11-27 11:05

    If you call a cached method from same bean it will be treated as a private method and annotations will be ignored

提交回复
热议问题