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 3cb3df4 commit 8c36bd5Copy full SHA for 8c36bd5
src/main/java/com/kaluzny/domain/Book.java
@@ -14,7 +14,7 @@ public class Book {
14
private String name;
15
private String description;
16
17
- @ElementCollection(fetch = FetchType.LAZY)
+ @ElementCollection(fetch = FetchType.EAGER)
18
@CollectionTable(name = "tag")
19
@Column(name = "Value")
20
private List<String> tags = new ArrayList<>();
0 commit comments