将具有预定义值的域类映射到表

发布于 2024-12-02 11:25:05 字数 156 浏览 1 评论 0原文

是否可以创建将映射到具有预定义值的数据库表的域类,例如:

id value

1 test1

2 test2

3 test3

或者我必须手动编辑生成的 *.sql 文件才能完成此操作?

提前致谢。

Is it possible to create domain class which will be mapped to db table with predefined values, for example:

id value

1 test1

2 test2

3 test3

Or I have to manualy edit generated *.sql file to acomplish this?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虫児飞 2024-12-09 11:25:05

在表中拥有一组静态预定义行的一种方法是将其填充到 BootStrap.groovy 中。例如:

def init = { servletContext ->
    if (MyDomain.count() == 0) {
        new MyDomain(id: 1, value: 'test1').save(failOnError: true)
        new MyDomain(id: 2, value: 'test2').save(failOnError: true)
        new MyDomain(id: 3, value: 'test3').save(failOnError: true)
    }
}

另一种方法是使用迁移插件并创建数据库迁移来填充表。

One way to have a static set of predefined rows in a table is to populate it in BootStrap.groovy. For example:

def init = { servletContext ->
    if (MyDomain.count() == 0) {
        new MyDomain(id: 1, value: 'test1').save(failOnError: true)
        new MyDomain(id: 2, value: 'test2').save(failOnError: true)
        new MyDomain(id: 3, value: 'test3').save(failOnError: true)
    }
}

Another approach would be to use the migrations plugin and create a database migration to populate the table.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文