Check date between two other dates spring data jpa

后端 未结 4 1080
[愿得一人]
[愿得一人] 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:27

    Maybe you could try

    List

    findAllByPublicationDate(Date publicationDate);

    The detail could be checked in this article:

    https://www.baeldung.com/spring-data-jpa-query-by-date

提交回复
热议问题