摘要: pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> </dependency> <dependency> <groupI 阅读全文
posted @ 2020-02-24 19:15 MyBeans 阅读(549) 评论(0) 推荐(0) 编辑
摘要: 简介: Spring 3.1中开始对缓存提供支持,核心思路是对方法的缓存,当开发者调用一个方法时,将方法的参数和返回值作为key/value缓存起来,当再次调用该方法时,如果缓存中有数据,就直接从缓存中获取,否则再去执行该方法。但是,Spring 中并未提供缓存的实现,而是提供了-套缓存API,开发 阅读全文
posted @ 2020-02-24 18:35 MyBeans 阅读(962) 评论(0) 推荐(0) 编辑