在Grails应用程序启动期间执行SQL插入

时间:2013-01-22 06:39:41

标签: grails datasource

我正处于开发阶段,尝试使用内存数据库并在Grails应用程序启动期间加载一些数据。我的问题是,有没有办法编写/配置可以在启动期间执行的SQL插入语句。

1 个答案:

答案 0 :(得分:8)

您可以在BootStrap.groovy中执行此操作。如果为dataSource bean添加依赖注入,可以使用groovy.sql.Sql实例进行插入:

import groovy.sql.Sql

class BootStrap {

   def dataSource

   def init = { servletContext ->
      def sql = new Sql(dataSource)
      sql.executeUpdate(
         'insert into some_table(foo, bar) values(?, ?)',
         ['x', 'y'])
   }
}

您可能最好使用GORM,假设这些是使用域类管理的表。例如。运行类似new Book(author: 'me', title: 'some title').save()

的内容