Skip to content

Instantly share code, notes, and snippets.

@bogdanalbei
Created March 18, 2018 20:21
Show Gist options
  • Select an option

  • Save bogdanalbei/b21ce76b7e688594e6680248817d2074 to your computer and use it in GitHub Desktop.

Select an option

Save bogdanalbei/b21ce76b7e688594e6680248817d2074 to your computer and use it in GitHub Desktop.
Lazy loading
public class User {
private long id;
private String name;
private List<Wallet> wallets;
}
public class Wallet {
private long id;
private String address;
private long userId;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment