(after a database reverse engineer) does roo require an extra configuration to lazy load a collection?
aren't annotations enough?
likee
@ManyToOne(optional = false)
@OneToMany(mappedBy = "xxxxx", fetch = FetchType.LAZY)
@Fetch(FetchMode.SELECT)
Printable View
(after a database reverse engineer) does roo require an extra configuration to lazy load a collection?
aren't annotations enough?
likee
@ManyToOne(optional = false)
@OneToMany(mappedBy = "xxxxx", fetch = FetchType.LAZY)
@Fetch(FetchMode.SELECT)
how can lazy loading with Roo be customized globally, and per entity, per relationship if possible and without the change being overridden by Roo. Please help!