Updated multiple sample so that it can be natively compiled

This commit is contained in:
Glenn Renfro
2022-09-27 12:29:56 -05:00
parent 53ed45051d
commit af7f086059
2 changed files with 1 additions and 5 deletions

View File

@@ -36,7 +36,7 @@ public class EmbeddedDataSourceConfiguration {
@Bean
public DataSource dataSource() {
return new EmbeddedDatabaseBuilder().setType(EmbeddedDatabaseType.HSQL).build();
return new EmbeddedDatabaseBuilder().setType(EmbeddedDatabaseType.H2).build();
}
@Bean