使用AtomicLong生成ID,如何每天从0开始
我正在使用 java.util.concurrent.atomic.AtomicLong 类来生成用于 id 生成的序列号。我需要每天从 1 开始这个数字,我可以使用哪些可用的逻辑、方法?
I am using java.util.concurrent.atomic.AtomicLong
class to generate sequence numbers for id generation. I need to start this number from 1 each day what are the available logic, methods which I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是关于如何使用 Joda Time 开始一天的答案。然后使用方法 AtomicLong#set(long) 重置该值。
Here's an answer on how to get the beginning of a day using Joda Time. Then use the method AtomicLong#set(long) to reset the value.