(亿级流量)分布式防重复提交token设计

大型互联网项目中,不少流量都达到亿级。同一时间不少的人在使用,而每一个用户提交表单的时候均可能会出现重复点击的状况,此时若是不作好控制,那么系统将会产生不少的数据重复的问题。怎样去设计一个高可用的防重复提交方案呢?博主将在此为你们详细分享当前本身负责的一个亿级流量项目中如何实现防重复提交。javascript

首先,博主在介绍以前,先介绍下这个亿级项目的故事。博主在16年入驻公司后,进入了该项目组,此时项目面对大流量访问的状况可谓很是糟。客户每天跟公司搞事情,不信任团队。具体问题争论点以下:php

1.用户在提交数据后,不少时候总会有重复提交(商城秒抢活动更甚,几乎不可用)css

2.系统天天宕机好几回(后经代码+服务器数据分析,a各类流没使用正确的方式去关闭;b.tomcat对应的session redis同步包有io句柄泄露;c.各类代码不规范写法如死循环、直接用new Thread()、StringBuffer乱用等;d.编写的sql性能问题等等)html

3.不少功能点不可用,如数据量大的报表没法导出、数据量大的excel没法导入、pc端和微信端用户信息等数据同步问题、大数据量的表单下拉选择没法使用、微信公众号里面图片没法多图片上传、商城秒抢活动常常出现商品超卖、无界线程(newCachedThreadPool)池乱用java

4.不少时候发版都出现功能漏发(服务器太多、且每台有多个实例)web

..........ajax

总之,问题多得博主数都数不过来.redis

固然,上面的这些问题都很重要,必须解决;博主这次就单独分享在解决防重复提交这个问题上的方案,其它的问题的解决方案如分布式锁、pc端单端登陆(微信端非单端)等等在后期讲解。spring

首先说一下防重复提交token的工做流程:sql

用户访问表单添加页面->spring防重复token拦截器拦截请求url,判断url对应的controller方法是是否注解有生成防重复token的标识->生成防重复token保存到redis中RedisUtil.getRu().setex("formToken_" + uuid, "1", 60 * 60);同时将本次生存的防重复token放到session中->跳转到表单页面时重token中取出放入表单->用户填写完信息提交表单->spring防重复token拦截器拦截请求url,判断提交的url对应controller方法是否注解有处理防重复提交token的标识->redis中formToken作原子减1操做RedisUtil.getRu().decr("formToken_" + clinetToken);若是不redis中作了减1操做后值不为0,则为重复提交,返回false。

防重复提交token生成流程图:


 

防重复表单提交处理流程图:


代码设计部分(此处因为非ajax提交表单时只须要两个注解就能够实现,故此处不做详细解读):

FormToken类,表单类型注解

package com.empire.form; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 类FormToken.java的实现描述:FormToken注解 * * @author arron 2017年3月14日 下午8:51:20 */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface FormToken { /** * 须要防重复功能的表单入口URL对应的controller方法须要添加的注解,用于生成token(默认为uuid) * @return */ boolean save() default false; /** * 防重复表单提交表单到后台对应的URL的controller方法须要添加的注解,用于第一次成功提交后remove掉token * @return */ boolean remove() default false; /** * 是否让token防重复拦截器放过token校验,为true时通常用于ajax提交放过到controller中处理,此功能能够在提交失败后恢复token * @return */ boolean pass() default false;//若是拦截到位表单重复提交是否放过让controller处理,默认被拦截器处理返回false; } 

TokenInterceptor(自定义token拦截器)

package com.empire.interceptor; import java.lang.reflect.Method; import java.util.Date; import java.util.UUID; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.log4j.Logger; import org.springframework.web.method.HandlerMethod; import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; import com.empire.utils.RedisUtil; /** * 类TokenInterceptor.java的实现描述:拦截器:防止重复提交 * * @author arron 2017年7月23日 下午5:14:32 */ public class TokenInterceptor extends HandlerInterceptorAdapter { private static final Logger logger = Logger.getLogger(FormToken.class); @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { if (handler instanceof HandlerMethod) { HandlerMethod handlerMethod = (HandlerMethod) handler; Method method = handlerMethod.getMethod(); FormToken annotation = method.getAnnotation(FormToken.class); if (annotation != null) { boolean needSaveSession = annotation.save(); if (needSaveSession) { Date d = new Date(); String uuid = UUID.randomUUID().toString(); RedisUtil.getRu().setex("formToken_" + uuid, "1", 60 * 60); request.getSession(true).setAttribute("formToken", uuid); logger.warn(request.getServletPath() + "---->formToken:" + uuid); } boolean needRemoveSession = annotation.remove(); if (needRemoveSession) { if (isRepeatSubmit(request)) { logger.warn("please don't repeat submit,url:" + request.getServletPath()); boolean pass = annotation.pass(); request.setAttribute("formToken_pass_repeat", "true"); return pass; } //request.getSession(true).removeAttribute("token"); } } return true; } else { return super.preHandle(request, response, handler); } } private boolean isRepeatSubmit(HttpServletRequest request) { String clinetToken = request.getParameter("formToken"); if (clinetToken == null) { return true; } boolean r = RedisUtil.getRu().exists("formToken_" + clinetToken); if (r) { Long upCount = RedisUtil.getRu().decr("formToken_" + clinetToken); //若是对更新标记作减减操做后不等0,表示是重复提交 if (upCount != 0) { RedisUtil.getRu().del("formToken_" + clinetToken); return true; } else { RedisUtil.getRu().del("formToken_" + clinetToken); return false; } } else { return true; } } } 

controller表单入口方法:

@FormToken(save = true) @RequestMapping(value = "addAppointPage", produces = "text/html") public String addAppointPage(HttpServletRequest request, HttpServletResponse response, Model uiModel) { //业务代码 ...... return "pcpageAppoint/add"; } 

jsp(例子为ajax方式状况)

<jsp:directive.page contentType="text/html;charset=UTF-8"/> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> //script、css import ....... <script> function addAppoint(){ var formToken = $("#formToken").val(); var flag=true; var mileage=$('#mileage').val(); if(mileage==""){ alert("请输入行驶里程"); flag=false; return; }else{ var reg=/^[0-9]*$/; if (!reg.test(mileage)){ alert("行驶里程只能是数字"); flag=false; return; } } $(".btn").removeAttr("onclick"); if(flag){ $.ajax({ url:"/ump/xxxxpc/pageAppoint/addAppointment", data : { //业务字段 "memberId":'${member.id}', ................... "mileage":mileage, 'formToken' : formToken }, type: "POST", error: function(msg){}, success:function(s){ var res = eval('([{'+s+'}])'); if(res[0].state){ alert(res[0].msg); window.location.href ="/ump/xxxxpc/pageAppoint/showAppointmentList"; }else{ alert(res[0].msg); return; } }, complete: comAjaxComplete //----此处为pc端ajax统一鉴权,暂时不用管 }) } } </script> <div class="personal_right clearfix"> <div class="appointment"> <div class="appointment_form"> <input type="hidden" id="formToken" name="formToken" value="${formToken}"/> <div class="form_item"> <div class="item_left">行驶里程<sup class="important_ts">*</sup>:</div> <div class="item_right"><input id="mileage" placeholder="请输入行驶里程"/></div> </div> <div class="submit_re"> <input type="button" value="提交" class="submit_sub theme_c" onclick="addAppoint();"/> <input type="button" value="返回" class="submit_sub other_c" onclick="history.back();"/> </div> </div> </div> </div> 

controller表单提交方法:

@RequestMapping(value = "addAppointment", produces = "text/html;charset=utf-8") @ResponseBody @FormToken(remove = true, pass = true) public String addAppointment(HttpServletRequest request, HttpServletResponse response, Model uiModel,@RequestParam(value = "memberId", required = false) Long memberId, @RequestParam(value = "mileage", required = false) String mileage) { String str = ""; //判断是否为重复提交,若是是直接跳转 String passRepeat = (String) request.getAttribute("formToken_pass_repeat"); if ("true".equals(passRepeat)) { str = "state:false,msg:\"请勿重复提交!\""; return str; } String clinetToken= request.getParameter("formToken"); //从新生成一个uuid,预定失败的时候生成新的uuid String uuid =clinetToken; if (memberId == null || memberId.longValue() == 0l) { CommonInterceptorUtil.recoveryFormToken(uuid); str = "state:false,msg:\"参数错误,请刷新后重试\""; } else if (StringUtils.isEmpty(mileage)) { CommonInterceptorUtil.recoveryFormToken(uuid); str = "state:false,msg:\"行驶里程不能为空\""; } else { //业务代码 ...... str = "state:true,msg:\"预定成功\""; } return str; } 

CommonInterceptorUtil (提交失败时token恢复类)

package com.empire.interceptor;

import java.util.Date; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.empire.utils.RedisUtil; /** * 类CommonInterceptorUtil.java的实现描述:数据同步工具类 * * @author arron 2017年3月14日 下午3:51:53 */ public class CommonInterceptorUtil { private static final Logger log = LoggerFactory.getLogger(CommonInterceptorUtil .class); /** * 恢复formToken,用于ajax防止重复提交,在controller中执行业务失败后调用 * * @param clinetToken */ public static void recoveryFormToken(String clinetToken) { if (StringUtils.isNotBlank(clinetToken)) { RedisUtil.getRu().setex("formToken_" + clinetToken, "1", 60 * 60); log.warn("防重复提交业务失败_恢复成功formToken:" + clinetToken); } } } 

RedisUtil(此处不是重点,可自行实现)

package com.empire.utils;

import java.util.List; import java.util.Map; import java.util.Set; import org.apache.log4j.Logger; import redis.clients.jedis.BinaryClient.LIST_POSITION; import redis.clients.jedis.Jedis; import redis.clients.jedis.JedisPool; import redis.clients.jedis.JedisPoolConfig; /** * jredis工具类 * * @author Aaron */ public class RedisUtil { private static final Logger LOGGER = Logger.getLogger(RedisUtil.class); private static JedisPool pool = null; private static RedisUtil ru = new RedisUtil(); private RedisUtil() { if (pool == null) { String ip = ""; int port = 6379; String redisIpPort = Global.REDIS_STRING; String[] str = redisIpPort.split(";"); if (null != str) { for (String ipAddress : str) { if (null != ipAddress && !"".equals(ipAddress)) { ip = ipAddress.split(":")[0]; port = Integer.parseInt(ipAddress.split(":")[1]); } } } JedisPoolConfig config = new JedisPoolConfig(); // 控制一个pool可分配多少个jedis实例,经过pool.getResource()来获取; // 若是赋值为-1,则表示不限制;若是pool已经分配了maxActive个jedis实例,则此时pool的状态为exhausted(耗尽)。 config.setMaxTotal(10000); // 控制一个pool最多有多少个状态为idle(空闲的)的jedis实例。 config.setMaxIdle(2000); // 表示当borrow(引入)一个jedis实例时,最大的等待时间,若是超过等待时间,则直接抛出JedisConnectionException; config.setMaxWaitMillis(1000 * 100); config.setTestOnBorrow(true); pool = new JedisPool(config, ip, port, 100000); } } /** * <p> * 设置key value,若是key已经存在则返回0,nx==> not exist * </p> * * @param key * @param value * @return 成功返回1 若是存在 和 发生异常 返回 0 */ public Long setnx(byte[] key, byte[] value) { Jedis jedis = null; try { jedis = pool.getResource(); return jedis.setnx(key, value); } catch (Exception e) { LOGGER.error(e.getMessage()); return 0L; } finally { returnResource(pool, jedis); } } /** * 设置有效时间 * * @param key * @param seconds单位:秒 * @return */ public Long expire(byte[] key, int seconds) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.expire(key, seconds); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 向redis存入key和value,并释放链接资源 * </p> * <p> * 若是key已经存在 则覆盖 * </p> * * @param key * @param value * @return 成功 返回OK 失败返回 0 */ public String set(byte[] key, byte[] value) { Jedis jedis = null; try { jedis = pool.getResource(); return jedis.set(key, value); } catch (Exception e) { LOGGER.error(e.getMessage()); return "0"; } finally { returnResource(pool, jedis); } } /** * <p> * 经过key获取储存在redis中的value * </p> * <p> * 并释放链接 * </p> * * @param key * @return 成功返回value 失败返回null */ public byte[] get(byte[] key) { Jedis jedis = null; byte[] value = null; try { jedis = pool.getResource(); value = jedis.get(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return value; } /** * <p> * 经过key获取储存在redis中的value * </p> * <p> * 并释放链接 * </p> * * @param key * @return 成功返回value 失败返回null */ public String get(String key) { Jedis jedis = null; String value = null; try { jedis = pool.getResource(); value = jedis.get(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return value; } /** * <p> * 向redis存入key和value,并释放链接资源 * </p> * <p> * 若是key已经存在 则覆盖 * </p> * * @param key * @param value * @return 成功 返回OK 失败返回 0 */ public String set(String key, String value) { Jedis jedis = null; try { jedis = pool.getResource(); return jedis.set(key, value); } catch (Exception e) { LOGGER.error(e.getMessage()); return "0"; } finally { returnResource(pool, jedis); } } /** * <p> * 删除指定的key,也能够传入一个包含key的数组 * </p> * * @param keys 一个key 也可使 string 数组 * @return 返回删除成功的个数 */ public Long del(byte[]... keys) { Jedis jedis = null; try { jedis = pool.getResource(); return jedis.del(keys); } catch (Exception e) { LOGGER.error(e.getMessage()); return 0L; } finally { returnResource(pool, jedis); } } /** * <p> * 删除指定的key,也能够传入一个包含key的数组 * </p> * * @param keys 一个key 也可使 string 数组 * @return 返回删除成功的个数 */ public Long del(String... keys) { Jedis jedis = null; try { jedis = pool.getResource(); return jedis.del(keys); } catch (Exception e) { LOGGER.error(e.getMessage()); return 0L; } finally { returnResource(pool, jedis); } } /** * <p> * 经过key向指定的value值追加值 * </p> * * @param key * @param str * @return 成功返回 添加后value的长度 失败 返回 添加的 value 的长度 异常返回0L */ public Long append(String key, String str) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.append(key, str); } catch (Exception e) { LOGGER.error(e.getMessage()); return 0L; } finally { returnResource(pool, jedis); } return res; } /** * <p> * 判断key是否存在 * </p> * * @param key * @return true OR false */ public Boolean exists(String key) { Jedis jedis = null; try { jedis = pool.getResource(); return jedis.exists(key); } catch (Exception e) { LOGGER.error(e.getMessage()); return false; } finally { returnResource(pool, jedis); } } /** * <p> * 设置key value,若是key已经存在则返回0,nx==> not exist * </p> * * @param key * @param value * @return 成功返回1 若是存在 和 发生异常 返回 0 */ public Long setnx(String key, String value) { Jedis jedis = null; try { jedis = pool.getResource(); return jedis.setnx(key, value); } catch (Exception e) { LOGGER.error(e.getMessage()); return 0L; } finally { returnResource(pool, jedis); } } /** * <p> * 设置key value并制定这个键值的有效期 * </p> * * @param key * @param value * @param seconds 单位:秒 * @return 成功返回OK 失败和异常返回null */ public String setex(String key, String value, int seconds) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.setex(key, seconds, value); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * 设置有效时间 * * @param key * @param seconds单位:秒 * @return */ public Long expire(String key, int seconds) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.expire(key, seconds); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key 和offset 从指定的位置开始将原先value替换 * </p> * <p> * 下标从0开始,offset表示从offset下标开始替换 * </p> * <p> * 若是替换的字符串长度太小则会这样 * </p> * <p> * example: * </p> * <p> * value : bigsea@zto.cn * </p> * <p> * str : abc * </p> * <P> * 从下标7开始替换 则结果为 * </p> * <p> * RES : bigsea.abc.cn * </p> * * @param key * @param str * @param offset 下标位置 * @return 返回替换后 value 的长度 */ public Long setrange(String key, String str, int offset) { Jedis jedis = null; try { jedis = pool.getResource(); return jedis.setrange(key, offset, str); } catch (Exception e) { LOGGER.error(e.getMessage()); return 0L; } finally { returnResource(pool, jedis); } } /** * <p> * 经过批量的key获取批量的value * </p> * * @param keys string数组 也能够是一个key * @return 成功返回value的集合, 失败返回null的集合 ,异常返回空 */ public List<String> mget(String... keys) { Jedis jedis = null; List<String> values = null; try { jedis = pool.getResource(); values = jedis.mget(keys); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return values; } /** * <p> * 批量的设置key:value,能够一个 * </p> * <p> * example: * </p> * <p> * obj.mset(new String[]{"key2","value1","key2","value2"}) * </p> * * @param keysvalues * @return 成功返回OK 失败 异常 返回 null */ public String mset(String... keysvalues) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.mset(keysvalues); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 批量的设置key:value,能够一个,若是key已经存在则会失败,操做会回滚 * </p> * <p> * example: * </p> * <p> * obj.msetnx(new String[]{"key2","value1","key2","value2"}) * </p> * * @param keysvalues * @return 成功返回1 失败返回0 */ public Long msetnx(String... keysvalues) { Jedis jedis = null; Long res = 0L; try { jedis = pool.getResource(); res = jedis.msetnx(keysvalues); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 设置key的值,并返回一个旧值 * </p> * * @param key * @param value * @return 旧值 若是key不存在 则返回null */ public String getset(String key, String value) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.getSet(key, value); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过下标 和key 获取指定下标位置的 value * </p> * * @param key * @param startOffset 开始位置 从0 开始 负数表示从右边开始截取 * @param endOffset * @return 若是没有返回null */ public String getrange(String key, int startOffset, int endOffset) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.getrange(key, startOffset, endOffset); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key 对value进行加值+1操做,当value不是int类型时会返回错误,当key不存在是则value为1 * </p> * * @param key * @return 加值后的结果 */ public Long incr(String key) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.incr(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key给指定的value加值,若是key不存在,则这是value为该值 * </p> * * @param key * @param integer * @return */ public Long incrBy(String key, Long integer) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.incrBy(key, integer); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 对key的值作减减操做,若是key不存在,则设置key为-1 * </p> * * @param key * @return */ public Long decr(String key) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.decr(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 减去指定的值 * </p> * * @param key * @param integer * @return */ public Long decrBy(String key, Long integer) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.decrBy(key, integer); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key获取value值的长度 * </p> * * @param key * @return 失败返回null */ public Long serlen(String key) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.strlen(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key给field设置指定的值,若是key不存在,则先建立 * </p> * * @param key * @param field 字段 * @param value * @return 若是存在返回0 异常返回null */ public Long hset(String key, String field, String value) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.hset(key, field, value); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key给field设置指定的值,若是key不存在则先建立,若是field已经存在,返回0 * </p> * * @param key * @param field * @param value * @return */ public Long hsetnx(String key, String field, String value) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.hsetnx(key, field, value); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key同时设置 hash的多个field * </p> * * @param key * @param hash * @return 返回OK 异常返回null */ public String hmset(String key, Map<String, String> hash) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.hmset(key, hash); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key 和 field 获取指定的 value * </p> * * @param key * @param field * @return 没有返回null */ public String hget(String key, String field) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.hget(key, field); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key 和 fields 获取指定的value 若是没有对应的value则返回null * </p> * * @param key * @param fields 可使 一个String 也能够是 String数组 * @return */ public List<String> hmget(String key, String... fields) { Jedis jedis = null; List<String> res = null; try { jedis = pool.getResource(); res = jedis.hmget(key, fields); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key给指定的field的value加上给定的值 * </p> * * @param key * @param field * @param value * @return */ public Long hincrby(String key, String field, Long value) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.hincrBy(key, field, value); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key和field判断是否有指定的value存在 * </p> * * @param key * @param field * @return */ public Boolean hexists(String key, String field) { Jedis jedis = null; Boolean res = false; try { jedis = pool.getResource(); res = jedis.hexists(key, field); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key返回field的数量 * </p> * * @param key * @return */ public Long hlen(String key) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.hlen(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key 删除指定的 field * </p> * * @param key * @param fields 能够是 一个 field 也能够是 一个数组 * @return */ public Long hdel(String key, String... fields) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.hdel(key, fields); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key返回全部的field * </p> * * @param key * @return */ public Set<String> hkeys(String key) { Jedis jedis = null; Set<String> res = null; try { jedis = pool.getResource(); res = jedis.hkeys(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key返回全部和key有关的value * </p> * * @param key * @return */ public List<String> hvals(String key) { Jedis jedis = null; List<String> res = null; try { jedis = pool.getResource(); res = jedis.hvals(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key获取全部的field和value * </p> * * @param key * @return */ public Map<String, String> hgetall(String key) { Jedis jedis = null; Map<String, String> res = null; try { jedis = pool.getResource(); res = jedis.hgetAll(key); } catch (Exception e) { // TODO } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key向list头部添加字符串 * </p> * * @param key * @param strs 可使一个string 也可使string数组 * @return 返回list的value个数 */ public Long lpush(String key, String... strs) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.lpush(key, strs); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key向list尾部添加字符串 * </p> * * @param key * @param strs 可使一个string 也可使string数组 * @return 返回list的value个数 */ public Long rpush(String key, String... strs) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.rpush(key, strs); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key在list指定的位置以前或者以后 添加字符串元素 * </p> * * @param key * @param where LIST_POSITION枚举类型 * @param pivot list里面的value * @param value 添加的value * @return */ public Long linsert(String key, LIST_POSITION where, String pivot, String value) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.linsert(key, where, pivot, value); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key设置list指定下标位置的value * </p> * <p> * 若是下标超过list里面value的个数则报错 * </p> * * @param key * @param index 从0开始 * @param value * @return 成功返回OK */ public String lset(String key, Long index, String value) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.lset(key, index, value); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key从对应的list中删除指定的count个 和 value相同的元素 * </p> * * @param key * @param count 当count为0时删除所有 * @param value * @return 返回被删除的个数 */ public Long lrem(String key, long count, String value) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.lrem(key, count, value); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key保留list中从strat下标开始到end下标结束的value值 * </p> * * @param key * @param start * @param end * @return 成功返回OK */ public String ltrim(String key, long start, long end) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.ltrim(key, start, end); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key从list的头部删除一个value,并返回该value * </p> * * @param key * @return */ synchronized public String lpop(String key) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.lpop(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key从list尾部删除一个value,并返回该元素 * </p> * * @param key * @return */ synchronized public String rpop(String key) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.rpop(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key从一个list的尾部删除一个value并添加到另外一个list的头部,并返回该value * </p> * <p> * 若是第一个list为空或者不存在则返回null * </p> * * @param srckey * @param dstkey * @return */ public String rpoplpush(String srckey, String dstkey) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.rpoplpush(srckey, dstkey); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key获取list中指定下标位置的value * </p> * * @param key * @param index * @return 若是没有返回null */ public String lindex(String key, long index) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.lindex(key, index); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key返回list的长度 * </p> * * @param key * @return */ public Long llen(String key) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.llen(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key获取list指定下标位置的value * </p> * <p> * 若是start 为 0 end 为 -1 则返回所有的list中的value * </p> * * @param key * @param start * @param end * @return */ public List<String> lrange(String key, long start, long end) { Jedis jedis = null; List<String> res = null; try { jedis = pool.getResource(); res = jedis.lrange(key, start, end); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key向指定的set中添加value * </p> * * @param key * @param members 能够是一个String 也能够是一个String数组 * @return 添加成功的个数 */ public Long sadd(String key, String... members) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.sadd(key, members); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key删除set中对应的value值 * </p> * * @param key * @param members 能够是一个String 也能够是一个String数组 * @return 删除的个数 */ public Long srem(String key, String... members) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.srem(key, members); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key随机删除一个set中的value并返回该值 * </p> * * @param key * @return */ public String spop(String key) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.spop(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key获取set中的差集 * </p> * <p> * 以第一个set为标准 * </p> * * @param keys 可使一个string 则返回set中全部的value 也能够是string数组 * @return */ public Set<String> sdiff(String... keys) { Jedis jedis = null; Set<String> res = null; try { jedis = pool.getResource(); res = jedis.sdiff(keys); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key获取set中的差集并存入到另外一个key中 * </p> * <p> * 以第一个set为标准 * </p> * * @param dstkey 差集存入的key * @param keys 可使一个string 则返回set中全部的value 也能够是string数组 * @return */ public Long sdiffstore(String dstkey, String... keys) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.sdiffstore(dstkey, keys); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key获取指定set中的交集 * </p> * * @param keys 可使一个string 也能够是一个string数组 * @return */ public Set<String> sinter(String... keys) { Jedis jedis = null; Set<String> res = null; try { jedis = pool.getResource(); res = jedis.sinter(keys); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key获取指定set中的交集 并将结果存入新的set中 * </p> * * @param dstkey * @param keys 可使一个string 也能够是一个string数组 * @return */ public Long sinterstore(String dstkey, String... keys) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.sinterstore(dstkey, keys); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key返回全部set的并集 * </p> * * @param keys 可使一个string 也能够是一个string数组 * @return */ public Set<String> sunion(String... keys) { Jedis jedis = null; Set<String> res = null; try { jedis = pool.getResource(); res = jedis.sunion(keys); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key返回全部set的并集,并存入到新的set中 * </p> * * @param dstkey * @param keys 可使一个string 也能够是一个string数组 * @return */ public Long sunionstore(String dstkey, String... keys) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.sunionstore(dstkey, keys); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key将set中的value移除并添加到第二个set中 * </p> * * @param srckey 须要移除的 * @param dstkey 添加的 * @param member set中的value * @return */ public Long smove(String srckey, String dstkey, String member) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.smove(srckey, dstkey, member); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key获取set中value的个数 * </p> * * @param key * @return */ public Long scard(String key) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.scard(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key判断value是不是set中的元素 * </p> * * @param key * @param member * @return */ public Boolean sismember(String key, String member) { Jedis jedis = null; Boolean res = null; try { jedis = pool.getResource(); res = jedis.sismember(key, member); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key获取set中随机的value,不删除元素 * </p> * * @param key * @return */ public String srandmember(String key) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.srandmember(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key获取set中全部的value * </p> * * @param key * @return */ public Set<String> smembers(String key) { Jedis jedis = null; Set<String> res = null; try { jedis = pool.getResource(); res = jedis.smembers(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key向zset中添加value,score,其中score就是用来排序的 * </p> * <p> * 若是该value已经存在则根据score更新元素 * </p> * * @param key * @param score * @param member * @return */ public Long zadd(String key, double score, String member) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.zadd(key, score, member); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key删除在zset中指定的value * </p> * * @param key * @param members 可使一个string 也能够是一个string数组 * @return */ public Long zrem(String key, String... members) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.zrem(key, members); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key增长该zset中value的score的值 * </p> * * @param key * @param score * @param member * @return */ public Double zincrby(String key, double score, String member) { Jedis jedis = null; Double res = null; try { jedis = pool.getResource(); res = jedis.zincrby(key, score, member); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key返回zset中value的排名 * </p> * <p> * 下标从小到大排序 * </p> * * @param key * @param member * @return */ public Long zrank(String key, String member) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.zrank(key, member); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key返回zset中value的排名 * </p> * <p> * 下标从大到小排序 * </p> * * @param key * @param member * @return */ public Long zrevrank(String key, String member) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.zrevrank(key, member); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key将获取score从start到end中zset的value * </p> * <p> * socre从大到小排序 * </p> * <p> * 当start为0 end为-1时返回所有 * </p> * * @param key * @param start * @param end * @return */ public Set<String> zrevrange(String key, long start, long end) { Jedis jedis = null; Set<String> res = null; try { jedis = pool.getResource(); res = jedis.zrevrange(key, start, end); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key返回指定score内zset中的value * </p> * * @param key * @param max * @param min * @return */ public Set<String> zrangebyscore(String key, String max, String min) { Jedis jedis = null; Set<String> res = null; try { jedis = pool.getResource(); res = jedis.zrevrangeByScore(key, max, min); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key返回指定score内zset中的value * </p> * * @param key * @param max * @param min * @return */ public Set<String> zrangeByScore(String key, double max, double min) { Jedis jedis = null; Set<String> res = null; try { jedis = pool.getResource(); res = jedis.zrevrangeByScore(key, max, min); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 返回指定区间内zset中value的数量 * </p> * * @param key * @param min * @param max * @return */ public Long zcount(String key, String min, String max) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.zcount(key, min, max); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key返回zset中的value个数 * </p> * * @param key * @return */ public Long zcard(String key) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.zcard(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key获取zset中value的score值 * </p> * * @param key * @param member * @return */ public Double zscore(String key, String member) { Jedis jedis = null; Double res = null; try { jedis = pool.getResource(); res = jedis.zscore(key, member); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key删除给定区间内的元素 * </p> * * @param key * @param start * @param end * @return */ public Long zremrangeByRank(String key, long start, long end) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.zremrangeByRank(key, start, end); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key删除指定score内的元素 * </p> * * @param key * @param start * @param end * @return */ public Long zremrangeByScore(String key, double start, double end) { Jedis jedis = null; Long res = null; try { jedis = pool.getResource(); res = jedis.zremrangeByScore(key, start, end); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 返回知足pattern表达式的全部key * </p> * <p> * keys(*) * </p> * <p> * 返回全部的key * </p> * * @param pattern * @return */ public Set<String> keys(String pattern) { Jedis jedis = null; Set<String> res = null; try { jedis = pool.getResource(); res = jedis.keys(pattern); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * <p> * 经过key判断值得类型 * </p> * * @param key * @return */ public String type(String key) { Jedis jedis = null; String res = null; try { jedis = pool.getResource(); res = jedis.type(key); } catch (Exception e) { LOGGER.error(e.getMessage()); } finally { returnResource(pool, jedis); } return res; } /** * 返还到链接池 * * @param pool * @param jedis */ public static void returnResource(JedisPool pool, Jedis jedis) { if (jedis != null) { pool.returnResource(jedis); } } public static RedisUtil getRu() { return ru; } public static void setRu(RedisUtil ru) { RedisUtil.ru = ru; } } 

注:以上列子也能够从新生存个token用于恢复到redis中,而后将新token传递到前台替换旧token,用于实现单页面能够点击多个提交按钮的状况;本设计以用于千万级大型项目真实使用,无端障/bug;读者可直接在项目中使用。

最后总结:因为非ajax表单提交是,只须要在controller表单入口处和表单提交方法上各添加一个注解就能够实现所有功能,故没贴出代码。

@FormToken(save = true) //表单入口方法 @FormToken(remove = true, pass = false) //表单提交方法
相关文章
相关标签/搜索