Check date between two other dates spring data jpa

后端 未结 4 1081
[愿得一人]
[愿得一人] 2020-12-08 03:34

I have this model:

public class Event {
    private String name;
    private Date start;
    private Date end;
}

and repository as

4条回答
  •  感动是毒
    2020-12-08 04:33

    You can also write a custom query using @Query

    @Query(value = "from EntityClassTable t where yourDate BETWEEN :startDate AND :endDate")
    public List getAllBetweenDates(@Param("startDate")Date startDate,@Param("endDate")Date endDate);
    

提交回复
热议问题