On a JPA project, when a POJO has a List<Bean> property which should be lazy-loaded, the loading gets triggered even if I'm not requesting the property in the filter. It would be great to instruct Jackson not to call the getter of these properties to avoid unnecessary loading!
On a JPA project, when a POJO has a
List<Bean>property which should be lazy-loaded, the loading gets triggered even if I'm not requesting the property in the filter. It would be great to instruct Jackson not to call the getter of these properties to avoid unnecessary loading!