Skip to content

Instantly share code, notes, and snippets.

View barreiro's full-sized avatar

Luis Barreiro barreiro

View GitHub Profile
@barreiro
barreiro / Experiment1.java
Last active November 13, 2015 16:08
Discussion regarding design changes in bytecode enhancement
public class Parent {
Long id;
@OneToMany(
mappedBy = "parent",
cascade = {CascadeType.ALL},
fetch = FetchType.LAZY
)
List<Child> children;