企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 组件源码 /** * <b>方法描述:</b> 获取所有元素 <br/> * <b>创建者:</b> admin <br/> * <b>创建时间:</b> 2018-05-09 10:36:49 <br/> * * @param key * 入参|key|{@link java.lang.String} * @param set * 出参|元素集合|{@link java.util.Set} * @return -1 异常<br/> * 1 成功<br/> */ @Component(label = "获取所有元素", style = "判断型", type = "同步组件", comment = "返回key集合所有的元素", version = "1.0.0", deprecated = false, author = "admin", date = "2018-05-09 10:36:49") @InParams(param = { @Param(name = "key", comment = "key", type = java.lang.String.class) }) @OutParams(param = { @Param(name = "set", comment = "元素集合", type = java.util.Set.class) }) @Returns(returns = { @Return(id = "-1", desp = "异常"), @Return(id = "1", desp = "成功") }) public static ResultBase P_smembers(String key) { try { Set obj = redisTemplate.opsForSet().members(key); return ResultBase.newSuccessResult(obj); } catch (Exception e) { AppLog.error(e); return ResultBase.newExceptionResult("TPTR4002", "key对应的数据结构不是Set类型"); } } 交易中组件使用方式: ![](https://img.kancloud.cn/e0/63/e063a3930ccc98d5049fe0c1505d026f_950x750.jpg) ## 参数说明及示例 key:redis中的key,示例: `"qwer"` 元素集合:返回redis中对应key所有元素的集合,示例: `__INNER__["result"]` > 返回key集合所有的元素