利用redis生成流水号
2022/6/21 2:20:24
本文主要是介绍利用redis生成流水号,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Component; import java.text.SimpleDateFormat; import java.util.Date; import java.util.concurrent.TimeUnit; @Component public class PrimaryGenerator { @Autowired private RedisTemplate redisTemplate; /** * redis任务流水号key */ private final static String REDIS_TASK_KEY = "serial"; private final static String TASK_PREFIX = "T"; public synchronized String createTaskNo(int codeLength) { String dateStr = getDateStr(); String key = REDIS_TASK_KEY + dateStr; String noPrefix = TASK_PREFIX + dateStr; Long count = redisTemplate.opsForValue().increment(key, 1); redisTemplate.boundValueOps(key).expire(1, TimeUnit.DAYS); String code = addZeroForNum(count.toString(), codeLength - noPrefix.length()); // 最终结果 return noPrefix + code; } private String getDateStr() { Date date = new Date(); SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd"); return formatter.format(date); } private String addZeroForNum(String str, int strLength) { int strLen = str.length(); if (strLen < strLength) { while (strLen < strLength) { StringBuffer sb = new StringBuffer(); sb.append("0").append(str);// 左补0 str = sb.toString(); strLen = str.length(); } } return str; } }
这篇关于利用redis生成流水号的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-18Redis安装入门:新手必读指南
- 2024-11-08阿里云Redis项目实战入门教程
- 2024-11-08阿里云Redis资料:新手入门与初级使用指南
- 2024-11-08阿里云Redis教程:新手入门及实用指南
- 2024-11-07阿里云Redis学习入门:新手必读指南
- 2024-11-07阿里云Redis学习入门:从零开始的操作指南
- 2024-11-07阿里云Redis学习:初学者指南
- 2024-11-06阿里云Redis入门教程:轻松搭建与使用指南
- 2024-11-02Redis项目实战:新手入门教程
- 2024-10-22Redis入门教程:轻松掌握数据存储与操作