Skip to content

Instantly share code, notes, and snippets.

@hkakutalua
Created July 19, 2020 10:49
Show Gist options
  • Save hkakutalua/9b06fdc8a3e476f6cf51b0631376a4e0 to your computer and use it in GitHub Desktop.
Save hkakutalua/9b06fdc8a3e476f6cf51b0631376a4e0 to your computer and use it in GitHub Desktop.
Changed fetch to FetchType.EAGER
@Entity
@Table(name = "carts")
class Cart : DomainEntity() {
@OneToMany(fetch = FetchType.EAGER, cascade = [CascadeType.ALL], orphanRemoval = true)
private val _items = mutableListOf<ProductItem>()
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment