This commit is contained in:
Phillip Webb
2016-12-30 11:10:44 -08:00
parent f8acaae115
commit 273beaa3ce
13 changed files with 39 additions and 44 deletions

View File

@@ -31,10 +31,12 @@ public class SampleFlywayApplication {
@Bean
public CommandLineRunner runner(final PersonRepository repository) {
return new CommandLineRunner() {
@Override
public void run(String... args) throws Exception {
System.err.println(repository.findAll());
}
};
}