I am building a small Grails application, and I am trying to make the data persist between server restarts in the development environment.
I changed the relevant part of DataSource.groovy to the following:
development {
dataSource {
dbCreate = "update" // one of 'create', 'create-drop','update'
url = "jdbc:hsqldb:mem:devDB"
}
}
Every time I restart the server, all the data has disappeared. Am I missing another configuration?
I have tried it both with and without sample data in BootStrap.groovy (if that makes any difference).