3
我有域對象人用日期字段:實例查詢春季數據
public class Person {
@Id
private Long id;
private Date date
建立這樣的例子:
Person person = new Person();
person.setSomeOtherFields("some fields");
Example<Person> example = Example.of(person);
如何創建示例查詢了日期範圍(搜索實體包含日期大於或等於某個日期,小於或等於另一個日期)?