How to configure Grails to work with Apache Derby? -
How to Configure Grails to Work with Apache Derby instead of HSQLDB
- Install the derby driver in your application's Lib folder.
-
Configure datasource:
driver classname = "org.apache.derby.jdbc.ClientDriver"
dbCreate = "create-drop" url = "jdbc: Derby: // Localhost: 1527 / The Database " -
Start the Derby Server.
- Create an empty database (via ij or graphical sql client).
- Start Grails.
Comments
Post a Comment