如何在spring-data中强制使用CrudRepository加载eager?

前端之家收集整理的这篇文章主要介绍了如何在spring-data中强制使用CrudRepository加载eager?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个包含List的实体,因此默认情况下延迟加载:

interface MyEntityRepository extends CrudRepository

问题:如何在执行repository.findOne(id)时强制执行加载?

最佳答案
我也需要这个,因为我在一个服务对象里面调用dao,我调用的事务调用get方法,所以没有异常,我能够获取记录.
像java 8中的东西:

public ProductEntity findProduct(int id) {
    ProductEntity p = productRepository.findOne(id);
    p.getPresentations().stream().count();
    return p;
}

.p.getPresentations()流()计数();将强制取出,我知道这不是一个干净的方式,但它在同一时间完成工作

原文链接:https://www.f2er.com/spring/432439.html

猜你在找的Spring相关文章