Skip to content

Instantly share code, notes, and snippets.

@Vp3n
Created January 26, 2012 22:14
Show Gist options
  • Save Vp3n/1685436 to your computer and use it in GitHub Desktop.
Save Vp3n/1685436 to your computer and use it in GitHub Desktop.
package bootstrap;
import models.MenuItem;
import play.Play;
import play.jobs.Job;
import play.jobs.OnApplicationStart;
import play.test.Fixtures;
@OnApplicationStart
public class DataLoader extends Job {
@Override
public void doJob() throws Exception {
if(Play.mode.isDev() && MenuItem.count() == 0) {
Fixtures.loadModels("_010_menuItem.yml");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment