如何在不重复的情况下按 Pageable 中的 ManyToOne 列表排序?
How to sort by ManyToOne list in Pageable without duplicates?
我最近 运行 遇到了这个问题。我有一个产品,其中包含与体积相关的值列表。示例:enter image description here
实体:
public class Price implements Serializable, Comparable<Price> {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "product_id")
private Product product;
private int valume;
private int cost;
@Override
public int compareTo(Price o) {
if (this.valume > o.getValume()) {
return 1;
} else if (this.valume < o.getValume()) {
return -1;
} else {
return 0;
}
}
}
public class Product implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;
private String name;
private String description;
private LocalDateTime data;
@OneToMany(targetEntity = Price.class, mappedBy = "product",
cascade = CascadeType.ALL)
@LazyCollection(LazyCollectionOption.FALSE)
private List<Price> price = new ArrayList<>();
}
控制器:
@GetMapping
public String tapePage(@PageableDefault(size = 12, sort = "data", direction = Sort.Direction.DESC) Pageable pageable,
Model model){
model.addAttribute("products", productService.getAllProducts(pageable));
return "tape";
}
问题是,如果我想按成本对产品进行排序,我将得到具有多个值的重复对象。示例 - http://localhost:8080/?sort=price.valume,ASC
我如何实施一个请求,以不同的价格为非重复产品发行产品。例如:http://localhost:8080/?sort=price[0].valume,ASC
这不是直接可行的,但您可以通过 Blaze-Persistence Entity Views 实现。
我创建了库以允许在 JPA 模型和自定义接口或抽象 class 定义的模型之间轻松映射,类似于 Spring 类固醇数据投影。这个想法是您按照自己喜欢的方式定义目标结构(领域模型),并通过 JPQL 表达式将属性(getter)映射到实体模型。
您的用例的 DTO 模型与 Blaze-Persistence 实体视图类似:
@EntityView(Product.class)
public interface ProductDto {
@IdMapping
Long getId();
String getName();
String getDescription();
LocalDateTime getData();
@Mapping("MAX(prices.valume) OVER (PARTITION BY id)")
int getHighestValuem();
Set<PriceDto> getPrice();
@EntityView(Price.class)
interface PriceDto {
@IdMapping
Long getId();
int getValume();
int getCost();
}
}
查询就是将实体视图应用于查询,最简单的就是通过 id 进行查询。
ProductDto a = entityViewManager.find(entityManager, ProductDto.class, id);
Spring 数据集成让您几乎可以像 Spring 数据投影一样使用它:https://persistence.blazebit.com/documentation/entity-view/manual/en_US/index.html#spring-data-features
Page<ProductDto> findAll(Pageable pageable);
最棒的是,它只会获取实际需要的状态!
在你的情况下,你可以使用这样的排序:sort=highestValuem,ASC
我最近 运行 遇到了这个问题。我有一个产品,其中包含与体积相关的值列表。示例:enter image description here 实体:
public class Price implements Serializable, Comparable<Price> {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "product_id")
private Product product;
private int valume;
private int cost;
@Override
public int compareTo(Price o) {
if (this.valume > o.getValume()) {
return 1;
} else if (this.valume < o.getValume()) {
return -1;
} else {
return 0;
}
}
}
public class Product implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;
private String name;
private String description;
private LocalDateTime data;
@OneToMany(targetEntity = Price.class, mappedBy = "product",
cascade = CascadeType.ALL)
@LazyCollection(LazyCollectionOption.FALSE)
private List<Price> price = new ArrayList<>();
}
控制器:
@GetMapping
public String tapePage(@PageableDefault(size = 12, sort = "data", direction = Sort.Direction.DESC) Pageable pageable,
Model model){
model.addAttribute("products", productService.getAllProducts(pageable));
return "tape";
}
问题是,如果我想按成本对产品进行排序,我将得到具有多个值的重复对象。示例 - http://localhost:8080/?sort=price.valume,ASC
我如何实施一个请求,以不同的价格为非重复产品发行产品。例如:http://localhost:8080/?sort=price[0].valume,ASC
这不是直接可行的,但您可以通过 Blaze-Persistence Entity Views 实现。
我创建了库以允许在 JPA 模型和自定义接口或抽象 class 定义的模型之间轻松映射,类似于 Spring 类固醇数据投影。这个想法是您按照自己喜欢的方式定义目标结构(领域模型),并通过 JPQL 表达式将属性(getter)映射到实体模型。
您的用例的 DTO 模型与 Blaze-Persistence 实体视图类似:
@EntityView(Product.class)
public interface ProductDto {
@IdMapping
Long getId();
String getName();
String getDescription();
LocalDateTime getData();
@Mapping("MAX(prices.valume) OVER (PARTITION BY id)")
int getHighestValuem();
Set<PriceDto> getPrice();
@EntityView(Price.class)
interface PriceDto {
@IdMapping
Long getId();
int getValume();
int getCost();
}
}
查询就是将实体视图应用于查询,最简单的就是通过 id 进行查询。
ProductDto a = entityViewManager.find(entityManager, ProductDto.class, id);
Spring 数据集成让您几乎可以像 Spring 数据投影一样使用它:https://persistence.blazebit.com/documentation/entity-view/manual/en_US/index.html#spring-data-features
Page<ProductDto> findAll(Pageable pageable);
最棒的是,它只会获取实际需要的状态!
在你的情况下,你可以使用这样的排序:sort=highestValuem,ASC