When deploying applications, I often use Hibernate’s capacity to create database schema in order to simplify the deployment. This is easily achievable by configuring hibernate.hbm2ddl.auto property.
However, on occasion I also need to insert some initial data to database, for example root user. Is there a way I could achieve this via hibernate with some kind of load textual file?
I know I could easily program the code that will do so, but just wondering if there is already some utility that can help me achieve the same via configuration?
I found this by doing a search on "Hibernate fixtures" :
Source: http://www.velocityreviews.com/forums/t667849-hibernate-quotfixturesquot-or-database-population.html
Give it a try and let us know if it works!