Hi,
I'm looking for a good solution for managing static data in a Grails app, i.e. data in infrequently changing tables such as a list of countries.
My requirements are:
- Should be easy to internationalize the data
- Should provide a means of loading the static data into the database (e.g. from an XML file) when running the unit/integration tests
- Should provide a means of synchronizing the static data with the database when starting the server
- Should provide a taglib for displaying the static data (e.g. list of countries)
- Should provide a view for manually viewing/changing the static data
The lookups and ref code plugins both attempt to solve this problem. Does anyone have experience using these plugins, or are there other options?