I need to some initial data (from csv files) into database. I am using Ebean with Play! Framework. I read the doc. It says using YAML files to store the data and call Ebean.save(). And this is done in a Test.
My questions:
Where should I insert my data? (Test is probably not the ideal place, as this data should be used in production)
Can I write my own code to get my data from existing csv files, instead of using YAML files?
Any suggestions or doc links will be appreciated.
Thanks!
With further search, I found the solution is described here
The code that perform initial insertion needs to be hooked into Play's startup.
Note that, it said the class needs to be in the root package.
code example: