gpt4 book ai didi

spring-data - 日期之间的 MongoRepository 查询

转载 作者:行者123 更新时间:2023-12-04 15:08:07 26 4
gpt4 key购买 nike

我的 pojo

public class PacketData implements Serializable {

private static final long serialVersionUID = 1L;

@Id
private final String token = UUID.randomUUID().toString();

private final ZonedDateTime arrived = ZonedDateTime.now();
}

我打算使用如下。
@Query("?")
List<PacketData> findPacketArrivedBetween(ZonedDateTime startDate, ZonedDateTime endDate);

有没有办法可以将以下查询放在上面 query注释以及我如何做大于和小于逻辑
Query query = new Query().addCriteria(Criteria.where("arrived").gte(startDate).lte(endDate));

最佳答案

您可以尝试以下几种方法。

没有查询注释。

List<PacketData> findByArrivedBetween(ZonedDateTime startDate, ZonedDateTime endDate);

带有查询注释。
@Query("{'arrived': {$gte: ?0, $lte:?1 }}")
List<PacketData> findPacketArrivedBetween(ZonedDateTime startDate, ZonedDateTime endDate);

关于spring-data - 日期之间的 MongoRepository 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42189770/

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