赞
踩
public class RedisTools {
public static void lPush(StringRedisTemplate stringRedisTemplate,String key,String value){
stringRedisTemplate.opsForList().leftPush(key,value);
}
public static String rpop(StringRedisTemplate stringRedisTemplate,String key){
return stringRedisTemplate.opsForList().rightPop(key);
}
}
@RequestMapping("reg")
public void reg(){
RedisTools.lPush(stringRedisTemplate,"reg", UUID.randomUUID().toString().replaceAll("-",""));
}
//可以加上其他的中间键,不同的数据往不同的地方推送 while (true){ List<String> list = new ArrayList<>(); for (int i = 0; i < 100; i++) { String s = RedisTools.rpop(stringRedisTemplate,"reg"); if(s==null){ break; } list.add(s); } //发送短信 //修改短信发送状态成功或失败 System.out.println(list); System.out.println("一分钟读取一次:"+ LocalDateTime.now()); Thread.sleep(60000); }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。