🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 组件源码 /** * <b>方法描述:</b> 移除并返回元素(尾部) <br/> * <b>创建者:</b> admin <br/> * <b>创建时间:</b> 2018-05-09 09:58:20 <br/> * * @param key * 入参|key|{@link java.lang.String} * @param value * 出参|值|{@link java.lang.String} * @return -1 异常<br/> * 1 成功<br/> */ @Component(label = "移除并返回元素(尾部)", style = "判断型", type = "同步组件", comment = "移除并且返回 key 对应的 list 的最后一个元素。key 不存在时返回 nil", version = "1.0.0", deprecated = false, author = "admin", date = "2018-05-09 09:58:20") @InParams(param = { @Param(name = "key", comment = "key", type = java.lang.String.class) }) @OutParams(param = { @Param(name = "value", comment = "值", type = java.lang.String.class) }) @Returns(returns = { @Return(id = "-1", desp = "异常"), @Return(id = "1", desp = "成功") }) public static ResultBase P_rpop(String key) { try { Object obj = redisTemplate.opsForList().rightPop(key); return ResultBase.newSuccessResult(obj.toString()); } catch (Exception e) { AppLog.error(e); return ResultBase.newExceptionResult("TPTR2010", "移除并返回元素(尾部) 异常:" + AppLog.errorMsg(e)); } } 交易中组件使用方式: ![](https://img.kancloud.cn/0c/81/0c816c309dbe6cd248282875be79d8af_950x750.jpg) ## 参数说明及示例 key:redis中的key,示例: `"qwer"` 值:返回 key 对应的 list 的最后一个元素,示例: `__INNER__["resultEnd"]` > 移除并且返回 key 对应的 list 的最后一个元素。key 不存在时返回 nil