我有一个包含List的实体,因此默认情况下延迟加载:
interface MyEntityRepository extends CrudRepository
问题:如何在执行repository.findOne(id)时强制执行加载?
public ProductEntity findProduct(int id) { ProductEntity p = productRepository.findOne(id); p.getPresentations().stream().count(); return p; }
.p.getPresentations()流()计数();将强制取出,我知道这不是一个干净的方式,但它在同一时间完成工作