方法一:使用UUID
public static String getUUID() {
String replaceUUID = UUID.randomUUID().toString().replace("-", "");
return replaceUUID;
}
方法二:用时间(精确到毫秒)+随机数
/**
* 生成订单号(20位):时间(精确到毫秒)+3位随机数
*/
public static synchronized String getOrderNum() {
//时间(精确到毫秒)
DateTimeFormatter ofPattern = DateTimeFormatter.ofPattern("yyyyMMddHHmmssSSS");
String localDate = LocalDateTime.now().format(ofPattern);
//3位随机数
String randomNumeric = RandomStringUtils.randomNumeric(3);
String orderNum = localDate + randomNumeric;
log.info("订单号:{}", orderNum);
return orderNum;
}
参考博客: fhttp://t.csdn.cn/lCQ47文章来源地址https://www.toymoban.com/news/detail-729795.html
文章来源:https://www.toymoban.com/news/detail-729795.html
到了这里,关于JAVA生成唯一订单编号方案(两种方式)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!