假设您有以下实体:
@Entity
public class Game {
@Id
@GeneratedValue
private Integer id;
private String name;
private Calendar startTime;
private int durationInSeconds;
public GameStatus getStatus() {
if( startTime.after(Calendar.getInstance()))
{
return GameStatus.SCHEDULED;
} else {
Calendar endTime = Calendar.getInstance();
endTime.setTime(startTime.getTime());
endTime.roll(Calendar.SECOND, durationInSeconds);
if( endTime.after(Calendar.getInstance())) {
return GameStatus.OPEN_FOR_PLAY;
}
else {
return GameStatus.FINISHED;
}
}
}
}
如果我的GameRepository
是PagingAndSortingRepository
,我怎样才能获得按status
属性排序的结果页?
我目前得到:
java.lang.IllegalArgumentException: Unable to locate Attribute with the the
given name [status] on this ManagedType [org.test.model.Game]
我可以理解,因为status
确实没有JPA属性。有办法解决这个问题吗?
(我在下面使用Hibernate,所以任何特定的Hibernate也都可以)
答案 0 :(得分:6)
问题是Spring Data的PageRequest排序是通过形成ORDER BY子句在数据库层上完成的。
您可以创建一个@Formula列,例如
@Entity
public class Game {
...
// rewrite your logic here in HQL
@Formula("case when startTime >= endTime then 'FINISHED' ... end")
private String status;
然后可以按排序顺序使用新列,因为您在公式中编写的所有内容都将传递给ORDER BY子句。
答案 1 :(得分:1)
使用注释@Formula
示例:tickePrice =总金额/入场人数
@Entity
public class Event {
...
// To avoid division by 0, and setting to 0 if admissions is 0
@Formula(value = "coalesce(totalAmount / NULLIF(admissions, 0), 0)")
private Double ticketPrice;
}
要按此列排序必须作为列结果出现。
GET example-url?size=25&page=0&sort=ticketPrice,ASC