当前位置:   article > 正文

外卖项目day08---店铺营业状态设置/用到redis

外卖项目day08---店铺营业状态设置/用到redis

首先我们需要学习redis,如果没有学的同学们可以看我这篇文章

Redis快速入门基础-CSDN博客

在amdin包下新建ShopController类

  1. @RestController("adminShopController")
  2. @RequestMapping("/admin/shop")
  3. @Api(tags = "店铺相关接口")
  4. @Slf4j
  5. public class ShopController {
  6. public static final String KEY = "SHOP_STATUS";
  7. @Autowired
  8. private RedisTemplate redisTemplate;
  9. /**
  10. * 设置店铺的营业状态
  11. * @param status
  12. * @return
  13. */
  14. @PutMapping("/{status}")
  15. @ApiOperation("设置店铺的营业状态")
  16. public Result setStatus(@PathVariable Integer status){
  17. log.info("设置店铺的营业状态为:{}",status == 1 ? "营业中" : "打烊中");
  18. redisTemplate.opsForValue().set(KEY,status);
  19. return Result.success();
  20. }
  21. /**
  22. * 获取店铺的营业状态
  23. * @return
  24. */
  25. @GetMapping("/status")
  26. @ApiOperation("获取店铺的营业状态")
  27. public Result<Integer> getStatus(){
  28. Integer status = (Integer) redisTemplate.opsForValue().get(KEY);
  29. log.info("获取店铺的营业状态:{}",status ==1 ? "营业中" : "打烊中");
  30. return Result.success(status);
  31. }
  32. }

controller包下新建user包创建ShopController

  1. @RestController("userShopController")
  2. @RequestMapping("/user/shop")
  3. @Api(tags = "店铺相关接口")
  4. @Slf4j
  5. public class ShopController {
  6. public static final String KEY = "SHOP_STATUS";
  7. @Autowired
  8. private RedisTemplate redisTemplate;
  9. /**
  10. * 获取店铺的营业状态
  11. * @return
  12. */
  13. @GetMapping("/status")
  14. @ApiOperation("获取店铺的营业状态")
  15. public Result<Integer> getStatus(){
  16. Integer status = (Integer) redisTemplate.opsForValue().get(KEY);
  17. log.info("获取店铺的营业状态:{}",status ==1 ? "营业中" : "打烊中");
  18. return Result.success(status);
  19. }
  20. }

 测试成功

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/903169
推荐阅读
相关标签
  

闽ICP备14008679号