当然,Hibernate 可以用于此类场景。如果你想控制查询,你应该使用 DTO 方法来避免延迟加载。
结合 Blaze-Persistence 提供的查询构建器,您还可以利用数据库的更高级功能。然后,您可以为 DTO 使用Blaze-Persistence 实体视图,这是我创建的一个库,允许在 JPA 模型和自定义接口或抽象类定义的模型之间轻松映射,例如 Spring Data Projections on steroids。这个想法是您按照自己喜欢的方式定义目标结构(域模型),并通过 JPQL 表达式将属性(getter)映射到实体模型。
使用 Blaze-Persistence Entity-Views 的示例 DTO 模型可能如下所示:
@EntityView(User.class)
public interface UserDto {
@IdMapping
Long getId();
String getName();
Set<RoleDto> getRoles();
@EntityView(Role.class)
interface RoleDto {
@IdMapping
Long getId();
String getName();
}
}
查询是将实体视图应用于查询的问题,最简单的就是通过 id 进行查询。
UserDto a = entityViewManager.find(entityManager, UserDto.class, id);
Spring Data 集成允许您几乎像 Spring Data Projections 一样使用它:https ://persistence.blazebit.com/documentation/entity-view/manual/en_US/index.html#spring-data-features
Page<UserDto> findAll(Pageable pageable);
最好的部分是,它只会获取实际需要的状态!