当前位置:   article > 正文

springboot-No4-3 集成redis 下 redis的key前缀空间引入_springboot redis key前缀

springboot redis key前缀

设计的思考

上一节我们已经做好了 redis的service,但是为了防止key冲突,这里做一个前缀空间的引入

主要思想是不同业务模块使用不同的前缀空间

因此我们可以使用 接口+抽象类 来描述

不同的业务模块去生产不同的前缀就行。

这里的设计其实有很多 方案的。

我们可以使用很多的设计模式进行设计。

比如 模板方法模式---用抽象类作为模板,下一层次的子类只要 稍微配置就行

       工厂方法模式--我们将各个业务模块的前缀空间的创建使用工厂方法

       大家可以实践下设计模式的使用,其他的模式也可以使用的。当然这里不是滥用设计模式,只是为了体验下模式的思想


采用模板方法模式进行设计前缀空间


KeyPrefix.java

  1. package miaosha.redis.key;
  2. public interface KeyPrefix {
  3. /**
  4. * 有效时间
  5. * @return
  6. */
  7. public int expireSeconds();
  8. /**
  9. * 得到一个key的前缀
  10. * @return
  11. */
  12. public String getPrefix();
  13. }

AbstractKeyPrefix.java

  1. package miaosha.redis.key;
  2. public abstract class AbstractKeyPrefix implements KeyPrefix{
  3. private int expireSeconds ;
  4. private String prefix ;
  5. public AbstractKeyPrefix(int expireSeconds , String prefix) {
  6. this.expireSeconds = expireSeconds ;
  7. this.prefix = prefix ;
  8. }
  9. public AbstractKeyPrefix(String prefix) {
  10. //默认0 代表永不过期
  11. this(0,prefix);
  12. }
  13. public int expireSeconds() {
  14. return expireSeconds;
  15. }
  16. public String getPrefix() {
  17. String name = this.getClass().getSimpleName();
  18. return name+":"+prefix;
  19. }
  20. }

UserKey.java

  1. package miaosha.redis.key.space;
  2. import miaosha.redis.key.AbstractKeyPrefix;
  3. public class UserKey extends AbstractKeyPrefix{
  4. public UserKey(String prefix) {
  5. super(prefix);
  6. }
  7. public final static UserKey ID = new UserKey("id");
  8. public final static UserKey NAME = new UserKey("name");
  9. }


实践代理模式-给key加上前缀的处理

RedisServiceProxy.java

  1. package miaosha.redis.service.proxy;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. import miaosha.dao.domain.User;
  5. import miaosha.redis.key.KeyPrefix;
  6. import miaosha.redis.key.space.UserKey;
  7. import miaosha.redis.service.RedisService;
  8. /**
  9. * 采用依赖的方式 代理了 原先的 RedisService
  10. *
  11. * @author kaifeng1
  12. *
  13. */
  14. public class RedisServiceProxy implements RedisService{
  15. private RedisService redisService ;
  16. public RedisServiceProxy(RedisService redisService) {
  17. this.redisService = redisService;
  18. }
  19. public RedisServiceProxy() {
  20. }
  21. public RedisServiceProxy proxy(RedisService redisService) {
  22. this.redisService = redisService ;
  23. return this ;
  24. }
  25. private static Map<Class<?>, KeyPrefix> table = new HashMap<Class<?>, KeyPrefix>();
  26. static {
  27. table.put(User.class, UserKey.ID);
  28. }
  29. public static KeyPrefix getTargetKeyPrefix(Class<?> claz) {
  30. return table.get(claz);
  31. }
  32. public <T> T getBean(String key, Class<T> claz) throws Exception {
  33. KeyPrefix fix = getTargetKeyPrefix(claz);
  34. if(fix == null) {
  35. System.out.println("please check RedisServiceProxy.table !");
  36. throw new Exception("prefix is not valid! ");
  37. }
  38. System.out.println("getBean->prefix :"+fix.getPrefix());
  39. return this.redisService.getBean(fix.getPrefix()+"_"+key, claz);
  40. }
  41. public <T> void setBean(String key, T bean) throws Exception {
  42. KeyPrefix fix = getTargetKeyPrefix(bean.getClass());
  43. if(fix == null) {
  44. System.out.println("please check RedisServiceProxy.table !");
  45. throw new Exception("prefix is not valid! ");
  46. }
  47. System.out.println("setBean-> prefix :"+fix.getPrefix());
  48. this.redisService.setBean(fix.getPrefix()+"_"+key, bean);
  49. }
  50. public <T> void delBean(String key, Class<T> claz) throws Exception {
  51. KeyPrefix fix = getTargetKeyPrefix(claz);
  52. if(fix == null) {
  53. System.out.println("please check RedisServiceProxy.table !");
  54. throw new Exception("prefix is not valid! ");
  55. }
  56. System.out.println("delBean - > prefix :"+fix.getPrefix());
  57. this.redisService.delBean(fix.getPrefix()+"_"+key, claz);
  58. }
  59. }

当然这里的代理写的很简陋

我们可以类比  spring 的aop中的代理,使用继承代理动态创建出它的代理对象

但是这中间如何获取前缀的方法仍然是不好的。

毕竟现在获取前缀的方法耦合太大。

怎样能进行解耦呢?

如果我们使用配置的方式,将这些前缀空间对象给注入进去呢?

还需要进一步进行改进

这里就不继续深入了


Controller中加入保存到redis的方法

现在数据库中的数据



我们将第二条纯英文的写入到redis中方便我们检验

如果是汉字的写入到redis中会有转码的问题

这里需要我们 【springboot-No3 】中的UserService

JedisSampleController.java

  1. package miaosha.controller;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.stereotype.Controller;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. import org.springframework.web.bind.annotation.ResponseBody;
  6. import miaosha.dao.domain.User;
  7. import miaosha.redis.service.RedisService;
  8. import miaosha.redis.service.proxy.RedisServiceProxy;
  9. import miaosha.result.Result;
  10. import miaosha.service.UserService;
  11. import miaosha.util.JsonCom;
  12. @Controller
  13. @RequestMapping("/jedis")
  14. public class JedisSampleController {
  15. @Autowired
  16. private RedisService redisService ;
  17. @Autowired
  18. private UserService userService ;
  19. @RequestMapping("/saveUserRedisProxy")
  20. @ResponseBody
  21. Result<String> hello() throws Exception {
  22. User user = this.userService.findUserById(2);
  23. RedisServiceProxy proxy = new RedisServiceProxy(redisService);
  24. proxy.setBean("user", user);
  25. User u = proxy.getBean("user", User.class);
  26. return Result.sucess(JsonCom.beanToJson(u));
  27. }
  28. }

启动我们的 MainApp.java




前缀是  UserKey:id

我们在redis的客户端查看下




可以看到数据是写入到了 redis中的



===============小结=========

到此为止我们已经集成了 mybatis和redis了

项目的整体结构如下:



工程可以看github

https://github.com/lambda-fk/springboot-learing

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

闽ICP备14008679号