We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a97fa5c commit 3841492Copy full SHA for 3841492
src/main/java/guru/springframework/spring6webapp/bootstrap/BootstrapData.java
@@ -48,6 +48,9 @@ public void run(String... args) throws Exception {
48
ericSaved.getBooks().add(dddSaved);
49
rodSaved.getBooks().add(noEJBSaved);
50
51
+ authorRepository.save(ericSaved);
52
+ authorRepository.save(rodSaved);
53
+
54
System.out.println("In Bootstrap");
55
System.out.println("Author Count: " + authorRepository.count());
56
System.out.println("Book Count: " + bookRepository.count());
0 commit comments