gpt4 book ai didi

spring-boot - 按日期值筛选列表

转载 作者:行者123 更新时间:2023-12-01 23:36:06 24 4
gpt4 key购买 nike

我在实体(对象)中有一个日期属性(date1),我想显示一个list<object>谁在(date1 <接下来的 15 天)时按日期过滤,例如: (今天+15天> date1>今天)。

我在 springBoot 和 primefaces 6,2 上使用 Jpa 存储库、springData 谢谢

最佳答案

如果您使用 Date , 使用 LocalDateTime相反,

现在,您的存储库应如下所示,

interface YourEntityRepository extends JpaRepository<YourEntity, String> {

List<YourEntity> findByDateBetween(LocalDateTime from, LocalDateTime to);

}

现在你可以过滤了,

List<YourEntity> entities = repository.findByDateBetween(date1, date1.plusDays(15));

使用 LocalDateTime您可以加上具有不同日期和时间字段的日期。

关于spring-boot - 按日期值筛选列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59493453/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com