美文网首页
SpringBoot实战—缓存简单使用

SpringBoot实战—缓存简单使用

作者: 遇见编程 | 来源:发表于2024-07-11 08:27 被阅读0次

    一.Redis缓存

    修改用户端接口 DishController 的 list 方法,加入缓存处理逻辑:

        @Autowired
        private RedisTemplate redisTemplate;
        /**
         * 根据分类id查询菜品
         *
         * @param categoryId
         * @return
         */
        @GetMapping("/list")
        @ApiOperation("根据分类id查询菜品")
        public Result<List<DishVO>> list(Long categoryId) {
    
            //构造redis中的key,规则:dish_分类id
            String key = "dish_" + categoryId;
    
            //查询redis中是否存在菜品数据
            List<DishVO> list = (List<DishVO>) redisTemplate.opsForValue().get(key);
            if(list != null && list.size() > 0){
                //如果存在,直接返回,无须查询数据库
                return Result.success(list);
            }
            ////////////////////////////////////////////////////////
            Dish dish = new Dish();
            dish.setCategoryId(categoryId);
            dish.setStatus(StatusConstant.ENABLE);//查询起售中的菜品
    
            //如果不存在,查询数据库,将查询到的数据放入redis中
            list = dishService.listWithFlavor(dish);
            ////////////////////////////////////////////////////////
            redisTemplate.opsForValue().set(key, list);
    
            return Result.success(list);
        }
    

    为了保证数据库Redis中的数据保持一致,修改管理端接口 DishController 的相关方法,加入清理缓存逻辑。

    需要改造的方法:

    • 新增菜品
    • 修改菜品
    • 批量删除菜品
    • 起售、停售菜品

    抽取清理缓存的方法:
    在管理端DishController中添加

        @Autowired
        private RedisTemplate redisTemplate;
        /**
         * 清理缓存数据
         * @param pattern
         */
        private void cleanCache(String pattern){
            Set keys = redisTemplate.keys(pattern);
            redisTemplate.delete(keys);
        }
    

    调用清理缓存的方法,保证数据一致性:
    1). 新增菜品优化

        /**
         * 新增菜品
         *
         * @param dishDTO
         * @return
         */
        @PostMapping
        @ApiOperation("新增菜品")
        public Result save(@RequestBody DishDTO dishDTO) {
            log.info("新增菜品:{}", dishDTO);
            dishService.saveWithFlavor(dishDTO);
    
            //清理缓存数据
            String key = "dish_" + dishDTO.getCategoryId();
            cleanCache(key);
            return Result.success();
        }
    

    2). 菜品批量删除优化

        /**
         * 菜品批量删除
         *
         * @param ids
         * @return
         */
        @DeleteMapping
        @ApiOperation("菜品批量删除")
        public Result delete(@RequestParam List<Long> ids) {
            log.info("菜品批量删除:{}", ids);
            dishService.deleteBatch(ids);
    
            //将所有的菜品缓存数据清理掉,所有以dish_开头的key
            cleanCache("dish_*");
    
            return Result.success();
        }
    

    **3). 修改菜品优化 **

        /**
         * 修改菜品
         *
         * @param dishDTO
         * @return
         */
        @PutMapping
        @ApiOperation("修改菜品")
        public Result update(@RequestBody DishDTO dishDTO) {
            log.info("修改菜品:{}", dishDTO);
            dishService.updateWithFlavor(dishDTO);
    
            //将所有的菜品缓存数据清理掉,所有以dish_开头的key
            cleanCache("dish_*");
    
            return Result.success();
        }
    

    4). 菜品起售停售优化

        /**
         * 菜品起售停售
         *
         * @param status
         * @param id
         * @return
         */
        @PostMapping("/status/{status}")
        @ApiOperation("菜品起售停售")
        public Result<String> startOrStop(@PathVariable Integer status, Long id) {
            dishService.startOrStop(status, id);
    
            //将所有的菜品缓存数据清理掉,所有以dish_开头的key
            cleanCache("dish_*");
    
            return Result.success();
        }
    

    二、Spring Cache

    Spring Cache 是一个框架,实现了基于注解的缓存功能,只需要简单地加一个注解,就能实现缓存功能。
    提供了一层抽象,底层可以切换不同的缓存实现,例如:

    • EHCache
    • Caffeine
    • Redis(常用)

    起步依赖:

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-cache</artifactId>                                       <version>2.7.3</version> 
    </dependency>
    

    在SpringCache中提供了很多缓存操作的注解,常见的是以下的几个:

    注解 说明
    @EnableCaching 开启缓存注解功能,通常加在启动类上
    @Cacheable 在方法执行前先查询缓存中是否有数据,如果有数据,则直接返回缓存数据;如果没有缓存数据,调用方法并将方法返回值放到缓存中
    @CachePut 将方法的返回值放到缓存中
    @CacheEvict 将一条或多条数据从缓存中删除

    在spring boot项目中,使用缓存技术只需在项目中导入相关缓存技术的依赖包,并在启动类上使用@EnableCaching开启缓存支持即可。

    例如,使用Redis作为缓存技术,只需要导入Spring data Redis的maven坐标即可。

    1)引导类上加@EnableCaching:

    package com.itheima;
    
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cache.annotation.EnableCaching;
    
    @Slf4j
    @SpringBootApplication
    @EnableCaching//开启缓存注解功能
    public class CacheDemoApplication {
        public static void main(String[] args) {
            SpringApplication.run(CacheDemoApplication.class,args);
            log.info("项目启动成功...");
        }
    }
    

    2). @CachePut注解

    @CachePut 说明:
    作用: 将方法返回值,放入缓存
    value: 缓存的名称, 每个缓存名称下面可以有很多key
    key: 缓存的key ----------> 支持Spring的表达式语言SPEL语法

    在save方法上加注解@CachePut
    当前UserController的save方法是用来保存用户信息的,我们希望在该用户信息保存到数据库的同时,也往缓存中缓存一份数据,我们可以在save方法上加上注解 @CachePut,用法如下:

    /**
        * CachePut:将方法返回值放入缓存
        * value:缓存的名称,每个缓存名称下面可以有多个key
        * key:缓存的key
        */
        @PostMapping
        @CachePut(value = "userCache", key = "#user.id")//key的生成:userCache::1
        public User save(@RequestBody User user){
            userMapper.insert(user);
            return user;
        }
    

    说明:key的写法如下
    #user.id : #user指的是方法形参的名称, id指的是user的id属性 , 也就是使用user的id属性作为key ;
    #result.id: #result代表方法返回值,该表达式 代表以返回对象的id属性作为key ;
    #p0.id:#p0指的是方法中的第一个参数,id指的是第一个参数的id属性,也就是使用第一个参数的id属性作为key ;
    #a0.id:#a0指的是方法中的第一个参数,id指的是第一个参数的id属性,也就是使用第一个参数的id属性作为key ;
    #root.args[0].id:#root.args[0]指的是方法中的第一个参数,id指的是第一个参数的id属性,也就是使用第一个参数的id属性作为key ;
    启动服务,通过swagger接口文档测试,访问UserController的save()方法
    因为id是自增,所以不需要设置id属性

    3). @Cacheable注解
    @Cacheable 说明:
    作用: 在方法执行前,spring先查看缓存中是否有数据,如果有数据,则直接返回缓存数据;若没有数据,调用方法并将方法返回值放到缓存中
    value: 缓存的名称,每个缓存名称下面可以有多个key
    key: 缓存的key ----------> 支持Spring的表达式语言SPEL语法

    在getById上加注解@Cacheable

        @GetMapping
        @Cacheable(cacheNames = "userCache",key="#id")
        public User getById(Long id){
            User user = userMapper.getById(id);
            return user;
        }
    

    4). @CacheEvict注解
    @CacheEvict 说明:
    作用: 清理指定缓存
    value: 缓存的名称,每个缓存名称下面可以有多个key
    key: 缓存的key ----------> 支持Spring的表达式语言SPEL语法

    在 delete 方法上加注解@CacheEvict

    @DeleteMapping
        @CacheEvict(cacheNames = "userCache",key = "#id")//删除某个key对应的缓存数据
        public void deleteById(Long id){
            userMapper.deleteById(id);
        }
    
        @DeleteMapping("/delAll")
        @CacheEvict(cacheNames = "userCache",allEntries = true)//删除userCache下所有的缓存数据
        public void deleteAll(){
            userMapper.deleteAll();
        }
    

    项目使用

    1). 导入Spring Cache和Redis相关maven坐标(已实现)

    <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-data-redis</artifactId>
    </dependency>
    
    <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-cache</artifactId>
    </dependency>
    

    2). 在启动类上加入@EnableCaching注解,开启缓存注解功能

    package com.sky;
    
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cache.annotation.EnableCaching;
    import org.springframework.transaction.annotation.EnableTransactionManagement;
    
    @SpringBootApplication
    @EnableTransactionManagement //开启注解方式的事务管理
    @Slf4j
    @EnableCaching
    public class SkyApplication {
        public static void main(String[] args) {
            SpringApplication.run(SkyApplication.class, args);
            log.info("server started");
        }
    }
    

    3). 在用户端接口SetmealController的 list 方法上加入@Cacheable注解

        /**
         * 条件查询
         *
         * @param categoryId
         * @return
         */
        @GetMapping("/list")
        @ApiOperation("根据分类id查询套餐")
        @Cacheable(cacheNames = "setmealCache",key = "#categoryId") //key: setmealCache::100
        public Result<List<Setmeal>> list(Long categoryId) {
            Setmeal setmeal = new Setmeal();
            setmeal.setCategoryId(categoryId);
            setmeal.setStatus(StatusConstant.ENABLE);
    
            List<Setmeal> list = setmealService.list(setmeal);
            return Result.success(list);
        }
    

    4). 在管理端接口SetmealController的 save、delete、update、startOrStop等方法上加入CacheEvict注解

        /**
         * 新增套餐
         *
         * @param setmealDTO
         * @return
         */
        @PostMapping
        @ApiOperation("新增套餐")
        @CacheEvict(cacheNames = "setmealCache",key = "#setmealDTO.categoryId")//key: setmealCache::100
        public Result save(@RequestBody SetmealDTO setmealDTO) {
            setmealService.saveWithDish(setmealDTO);
            return Result.success();
        }
        /**
         * 批量删除套餐
         *
         * @param ids
         * @return
         */
        @DeleteMapping
        @ApiOperation("批量删除套餐")
        @CacheEvict(cacheNames = "setmealCache",allEntries = true)
        public Result delete(@RequestParam List<Long> ids) {
            setmealService.deleteBatch(ids);
            return Result.success();
        }
        /**
         * 修改套餐
         *
         * @param setmealDTO
         * @return
         */
        @PutMapping
        @ApiOperation("修改套餐")
        @CacheEvict(cacheNames = "setmealCache",allEntries = true)
        public Result update(@RequestBody SetmealDTO setmealDTO) {
            setmealService.update(setmealDTO);
            return Result.success();
        }
    
        /**
         * 套餐起售停售
         *
         * @param status
         * @param id
         * @return
         */
        @PostMapping("/status/{status}")
        @ApiOperation("套餐起售停售")
        @CacheEvict(cacheNames = "setmealCache",allEntries = true)
        public Result startOrStop(@PathVariable Integer status, Long id) {
            setmealService.startOrStop(status, id);
            return Result.success();
        }
    

    相关文章

      网友评论

          本文标题:SpringBoot实战—缓存简单使用

          本文链接:https://www.haomeiwen.com/subject/snmwcjtx.html