zoukankan      html  css  js  c++  java
  • 执行器模式设计和使用

    1.定义: 
    @Autowired
        private JedisPool jedisPool;
    
     
        public static interface Execution {
            public <T> T process(Jedis jedis);
        }
    
        /**
         * 执行请求,开始前获取资源,结束后返回资源
         *
         * @param execution
         * @return
         */
        public <T> T execute(Execution execution) {
            Jedis jedis = null;
            try {
                jedis = jedisPool.getResource();
                T result = execution.process(jedis);
                return result;
            } catch (JedisConnectionException e) {
                throw e;
            } finally {
                if (null != jedis) {
                    jedis.close();
                }
            }
        }
    
    2.使用:
    
     @Autowired
        private JedisExecutionService jedisExecutionService;
    
        public void set(final String key, final Object value, final int seconds) {
    
            if (null == key) {
                throw new IllegalArgumentException("Cached key cannot be null.");
            }
            if (null == value) {
                throw new IllegalArgumentException("Cached value cannot be null.");
            }
    
            jedisExecutionService.execute(new Execution() {
    
                @Override
                public Object process(Jedis jedis) {
                    byte[] byteArray = serialize(value);
                    jedis.set(key.getBytes(), byteArray);
                    if (seconds > 0) {
                        jedis.expire(key.getBytes(), seconds);
                    }
                    return null;
                }
    
            });
        }
    
    
     public void expire(final String key, final int seconds) {
            if (null == key) {
                throw new IllegalArgumentException("Cached key cannot be null.");
            }
    
            jedisExecutionService.execute(new Execution() {
    
                @Override
                public Object process(Jedis jedis) {
                    jedis.expire(key.getBytes(), seconds);
                    return null;
                }
    
            });
        }
    
    
      public Object get(final String key) {
    
            if (null == key) {
                throw new IllegalArgumentException("Cached key cannot be null.");
            }
    
            return jedisExecutionService.execute(new Execution() {
    
                @Override
                public Object process(Jedis jedis) {
                    byte[] bs = jedis.get(key.getBytes());
                    if (null == bs) {
                        return null;
                    } else {
                        return deserialize(bs);
                    }
                }
    
            });
    
        }
    

      

  • 相关阅读:
    Selenium—浏览器相关操作
    Selenium—对话框处理
    Selenium—获取页面的title,url;使用句柄方式切换窗口
    Jmeter安装及配置(傻瓜模式)
    面试宝典(二)
    Python-接口自动化(十一)
    Jmeter启动报错解决方案
    Python-接口自动化(十)
    Python-接口自动化(九)
    Mac上实现Python用HTMLTestRunner生成html测试报告
  • 原文地址:https://www.cnblogs.com/yuhuameng/p/7520972.html
Copyright © 2011-2022 走看看