如何映射主键为VARCHAR2类型并执行我的方法来生成它
我是 grails 新手。我想用 VARCHAR2 映射主键并使用我的方法生成主键。如何解决这个问题?
I'm grails newbie.i want to mapping primary key with VARCHAR2 and generate primary key using my method to generated its.how to solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 GORM 中,您可以指定自己的 函数生成 ids。
要指定列类型,请查看 文档。要在 Oracle DB 中使用 VARCHAR2,只需 将您的属性设置为字符串。
In GORM you can specify your own function generating ids.
To specify column type take a look into documentation. For using VARCHAR2 in Oracle DB just set your property as String.