如何配置Grails以使用Apache Derby而不是HSQLDB 最佳答案 >将derby驱动程序安装到应用程序的lib文件夹中.
>配置DataSource:
driverClassName =“org.apache.derby.jdbc.ClientDriver”
dbCreate =“create-drop”
url =“jdbc:derby:// localhost:1527 / theDatabase”
>启动derby服务器.
>创建空数据库(通过ij或图形sql客户端).
>开始grails.