Springboot中基于注解使用缓存

简介: Springboot中基于注解使用缓存

一、概述



Spring定义了org.springframework.cache.Cache 和org.springframework.cache.CacheManager接口来统一不同的缓存技术,并支持使用JCache(JSR-107)注解简化我们开发;


  1. Cache接口为缓存的组件规范了定义,包含缓存的各种操作集合;
  2. Cache接口下Spring提供了各种xxxCache的实现;如RedisCache,EhCacheCache , ConcurrentMapCache等;
  3. 每次调用需要缓存功能的方法时,Spring会检查指定参数所指定的目标方法是否 已经被调用过;如果有就直接从缓存中获取方法调用后的结果,如果没有就调用方法;并缓存结果后返回给用户。下次调用直接从缓存中获取。
  4. 使用Spring缓存抽象时我们需要关注以下两点;
  • [x] 确定方法需要被缓存以及他们的缓存策略
  • [x] 从缓存中读取之前缓存存储的数据


二、常用注解及其参数



  1. 注解简介


注解 功能
@Cacheable 主要针对方法配置,能够根据方法的请求参数对其结果进行缓存
@CacheEvict 清空缓存
@CachePut 对存入缓存的数据进行更新
@EnableCaching 开启基于注解的缓存
@Caching 定义复杂的缓存规则


  1. @Cacheable/@CachePut/@CacheEvict主要的参数


常用参数 功能介绍 使用
value/cacheNames 缓存的名称,在spring配置文件中定义,必须指定至少一个 @Cacheable(value ="user")或者 @Cacheable(value={"user","mycache"};
key 缓存的key,可以为空,如果指定要按照SpEL表达式编写,如果不指定,则缺省按照方法的所有参数进行组合 @Cacheable(value = {"user"},key = "#id")
condition 缓存的条件,可以为空,使用SpEL编写,返回true或者false,只有为true才进行缓存/清除缓存,在调用方法之前之后都能判断 @Cacheable(value="user",condition="#id>2")
allEntries(@CacheEvict) 是否清空所有缓存内容,缺省为false,如果指定为true,则方法调用后将立即清空所有缓存 @CachEvict(value="user",allEntries=true)
beforeInvocation(@CacheEvict) 是否在方法执行前就清空,缺省为false,如果指定为true,则在方法还没有执行的时候就清空缓存,缺省情况下,如果方法执行抛出异常,则不会清空缓存 @CachEvict(value="user",beforeInvocation=true)
unless(@CachePut)(@Cacheable) 用于否决缓存的,不像condition,该表达式只方法执行之后判断,此时可以拿到返回值result进行判断。条件为true不会缓存,fasle才缓存 @Cacheable(value="user",unless="#result == null")
sync 是否支持异步 @Cacheable(value = {"user"},key = "#id",sync = true)
keyGenerator 指定key的生成策略,不能和key同时使用 @Cacheable(value ={"user"},keyGenerator = "myKeyGenerator")
cacheManager 用来指定缓存管理器


  1. Cache SpEL available metadata(可用的缓存元数据)


名字 位置 描述 示例
methodName root object 当前被调用的方法名 #root.methodName
method root object 当前被调用的方法 #root.method.name
target root object 当前被调用的目标对象 #root.target
targetClass root object 当前被调用的目标对象类 #root.targetClass
args root object 当前被调用的方法的参数列表 #root.args[0]
caches root object 当前方法调用使用的缓存列表(如@Cacheable(value={"cache1","cache2"})),则有两个cache #root.caches[0]
argumentname evaluation context 方法参数的名字.可以直接#参数名,也可以使用#p0或#a0的形式,0代表参数的索引; #iban、#a0、#p0
result evaluation context 方法执行后的返回值(仅当方法执行之后的判断有效,如"unless" cache put’的表达式’cache evict’的表达式,beforeInvocation=false) #result


三、简单的使用



<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-cache</artifactId>
</dependency>
package com.example.jpa.controller;
import com.example.jpa.entity.User;
import com.example.jpa.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.*;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@RestController
public class UserController {
    @Autowired
    private UserService userService;
    @Cacheable(value = {"user"},key = "#id") //调用方法之前调用
    @GetMapping("/user")
    public User getUserById(@RequestParam Integer id){
        return userService.getUserById(id);
    }
    @GetMapping("/users")
    public List<User> getAll(){
        return userService.getAll();
    }
    @Cacheable(value = "user",key = "#pageOffset")
    @GetMapping("/usersByPage")
    public Page<User> getAllByPage(@RequestParam Integer pageOffset,@RequestParam Integer pageSize){
        return userService.getAll(PageRequest.of(pageOffset,pageSize));
    }
    @CachePut(value = "user",key = "#result.id") //即调用方法又更新缓存数据
    @PostMapping("/user")
    public User saveUser(@RequestBody User user){
        return userService.saveUser(user);
    }
    //@CachePut(value = "user",key = "#result.id") //即调用方法又更新缓存数据
    @Caching
    @PutMapping("/user")
    public User updateUser(@RequestBody User user){
        return userService.updateUser(user);
    }
    @CacheEvict(value = "user",key = "#id")
    @DeleteMapping("/user")
    public void deleteUser(Integer id){
        userService.deleteUserById(id);
    }
}


在这里碰到了一个问题,在更新数据的时候怎么确保分页里面的缓存数据也随之更新而不是返回更新前的数据?

目录
相关文章
|
8月前
|
Java
SpringBoot常用注解
SpringBoot常用注解
30 0
|
2月前
|
JSON Java 数据格式
springboot常用注解
@RestController :修饰类,该控制器会返回Json数据 @RequestMapping(“/path”) :修饰类,该控制器的请求路径 @Autowired : 修饰属性,按照类型进行依赖注入 @PathVariable : 修饰参数,将路径值映射到参数上 @ResponseBody :修饰方法,该方法会返回Json数据 @RequestBody(需要使用Post提交方式) :修饰参数,将Json数据封装到对应参数中 @Controller@Service@Compont: 将类注册到ioc容器
|
8月前
|
缓存 NoSQL Java
Springboot整合缓存
Springboot整合缓存
111 0
Springboot整合缓存
|
8月前
|
XML Java 数据库
SpringBoot注解总结
SpringBoot注解总结
35 1
|
8月前
|
缓存 NoSQL Java
SpringBoot - 缓存入门详解与注解使用实例
SpringBoot - 缓存入门详解与注解使用实例
213 1
|
XML Java 数据格式
SpringBoot-32-常用注解汇总2
SpringBoot-32-常用注解汇总2 在上一章节我们已经讲解了SpringBoot中Controller相关注解,没有看的可以了解一下SpringBoot-31-Controller相关注解详解
88 0
|
前端开发 Java 数据安全/隐私保护
SpringBoot配置拦截器
SpringBoot配置拦截器
156 0
|
存储 缓存 Java
Springboot中基于注解使用缓存
Springboot中基于注解使用缓存
158 0
|
Java Spring 容器
40 个 SpringBoot 常用注解 中
40 个 SpringBoot 常用注解 中
113 0
40 个 SpringBoot 常用注解  中
|
前端开发 Java 索引
40 个 SpringBoot 常用注解 上
40 个 SpringBoot 常用注解 上
133 0
40 个 SpringBoot 常用注解   上