I have an entity and i'm using Pageable and I want to sort by a calculated property. here is my entity:
public class Task extends Entity implements Serializable {
@JsonView(Views.Simple.class)
private long startTime;
@JsonView(Views.Simple.class)
private long endTime;
}
In the repository I have :
Page<Task> findAll(Pageable pageable);
And in the service I want to sort by
endTime - StartTime