Hi,
Problem: use JPA/Hibernate, FetchType.LAZY is generated all the time for all relationships, which is not JPA default and not desired behavior I’m looking for.
Action: I tried multiple times, even with a strategy class (but I may have implemented it wrong as I didn’t see clear documentation on it), I still couldn’t control fetch type generated. It’s always FetchType.LAZY even for ManyToOne joins.
Desired Behavior: similar to Eclipse/JPA tool, give options: Default, Lazy, Eager.
PS: I like the JDBC/Java type customization for MyEclipse, which seems to be missing from the Eclipse/JPA tool.
Thanks,
– John