Spring Data Rest添加摘录投影可以关闭延迟抓取

时间:2017-04-07 22:00:45

标签: loading lazy-evaluation spring-data-rest

我是Spring Data Rest的新手,并尝试使用其基本概念。到目前为止一切运行良好,但几天前我注意到在将预测投入业务后,应用程序性能突然下降。

这些是我的实体,存储库和投影

@Entity
public class Item {

    @Id
    @GeneratedValue(strategy = TABLE)
    private long id;

    private String code;

    private String name;

    @ManyToOne(targetEntity=Category.class)
    @JoinColumn(name="category_id", referencedColumnName="id")
    private Category category;

    //getters & setters
}

@Entity
public class Category {

    @Id
    @GeneratedValue(strategy = TABLE)
    private long id;

    private String name;

    @OneToMany(mappedBy="category", targetEntity=Item.class, fetch=FetchType.LAZY)
    private Set<Item> items;

    //getters & setters
}

@RepositoryRestResource(excerptProjection=ItemExcerpt.class)
public interface ItemRepository extends CrudRepository<Item, Long>{

}

@RepositoryRestResource
public interface CategoryRepository extends CrudRepository<Category, Long>{

}

@Projection(name="excerpt", types=Item.class)
public interface ItemExcerpt {

    String getName();
}

所以,一切正常,直到我将摘录投影添加到ItemRepository @RepositoryRestResource(excerptProjection=ItemExcerpt.class)

在此之前,当我点击http://localhost:9191/categories Hibernate输出时,我的预期是:

select
        category0_.id as id1_0_,
        category0_.name as name2_0_ 
    from
        category category0_

这是我在添加excerptProjection=ItemExcerpt.class

后得到的输出
Hibernate: 
    select
        category0_.id as id1_0_,
        category0_.name as name2_0_ 
    from
        category category0_
Hibernate: 
    select
        items0_.category_id as category4_1_0_,
        items0_.id as id1_1_0_,
        items0_.id as id1_1_1_,
        items0_.category_id as category4_1_1_,
        items0_.code as code2_1_1_,
        items0_.name as name3_1_1_ 
    from
        item items0_ 
    where
        items0_.category_id=?

我的结论是,摘录投影会在@OneToMany关系中忽略延迟提取,从而导致性能下降。 有没有人知道绕过这个问题的方法,或者这可能是预期的行为?

1 个答案:

答案 0 :(得分:1)

并不完全是摘录投影会使懒惰的提取被忽略。更具体地说,摘录投影告诉弹簧数据在任何返回集合资源的地方都包括摘录数据。 从参考文档Projections Excerpts“摘录是自动应用于资源集合的投影。”。不幸的副作用就是spring-hateoas然后忽略了那个属性,而是放入了与资源的超媒体链接。我发现没有注释组合可以在保留输出的同时为您纠正此行为。 @JsonIgnore不会阻止额外的查询。 @RestResource(exported = false)将阻止查询,但也会阻止超媒体链接。