我可以在 Hibernate 中创建自己的序列吗?
我可以在 Hibernate 中创建自己的序列吗,就像我有一个数据库序列一样我必须在序列前添加 2 个字符吗?
Can I create my own sequence in Hibernate, like I have a database sequence and I have to add 2 characters before the sequence?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个。使用 Date 和 Calender
然后在 @GenericGenerator 注释中使用它
Try this one. With Date and Calender
And then use it in your @GenericGenerator annotation
您可以创建自己的标识符生成器。看看这篇博客文章,它基本上展示了如何做类似的事情你在寻找什么(除非我误解了这个问题):
You can create your own identifier generator. Have a look at this blog post which is basically showing how to do something similar to what you're looking for (unless I misundertsood the question):