MongoRepository findByCreatedAtBetween 没有返回准确的结果
MongoRepository findByCreatedAtBetween not returning accurate results
我在 Mongo 中的文档结构是这样的:
db.user.find()
{
"_id" : ObjectId("560fa46930a8e74be720009a"),
"createdAt" : ISODate("2015-10-03T09:47:56.333Z"),
"message" : "welcome",
}
{
"_id" : ObjectId("560fa46930a8e723e720009a"),
"createdAt" : ISODate("2015-10-03T09:48:25.048Z"),
"message" : "thank you"
}
当我在 Mongo Shell 中使用以下查询查找两个给定时间戳之间的文档时,我得到了正确的结果:
db.user.find({createdAt:{$gte:ISODate("2015-10-03T09:40:25.048Z"),$lte:ISODate("2015-10-03T09:50:56.333Z")}})
我在我的 REST 服务中使用 Mongo 存储库和 Spring 来与 Java 驱动程序一起工作。以下是用户存储库:
public interface UserRepository extends MongoRepository<User, String>
{
ArrayList<User> findbyCreatedAtBetween(Date d1, Date d2);
}
当我在我的服务中进行以下调用时,return 没有任何结果
userRepository.findbyCreatedAtBetween(2015-10-03T09:40:25.048Z, 2015-10-03T09:50:29.006Z)
然而,当我将 d1 设为前一天时,结果是 return:
userRepository.findbyCreatedAtBetween(2015-10-02T09:40:25.048Z, 2015-10-03T09:50:29.006Z)
关于如何解决这个问题的任何想法?请帮忙!
将其分解,正在针对 MongoDB 数据库执行带有关键字 Between
的查询,逻辑结果为 {"createdAt" : {"$gt" : d1, "$lt" : d2}}
,因此您有可能无法获得createdAt
日期包含在给定日期范围内的文档,即 d1 < createdAt < d2
,因为给定日期范围不满足条件。作为参考,这些是对 query methods:
的一些解释
查询方式支持的关键字
Keyword Sample Logical result
After findByBirthdateAfter(Date date) {"birthdate" : {"$gt" : date}}
Before findByBirthdateBefore(Date date) {"birthdate" : {"$lt" : date}}
Between findByAgeBetween(int from, int to) {"age" : {"$gt" : from, "$lt" : to}}
作为解决方法,您可能需要使用 @Query
注释。我没有对此进行测试,但您可能想尝试以下自定义查询实现示例:
public interface UserRepository extends MongoRepository<User, String> {
@Query(value = "{ 'createdAt' : {$gte : ?0, $lte: ?1 }}")
public ArrayList<User> findbyCreatedAtBetween(Date from, Date to);
}
如果以上方法对您不起作用,请创建一个自定义界面和您的实现 class 以执行自定义查询。例如,创建一个名称附加 Custom
:
的接口
public interface UserRepositoryCustom {
public List<User> findbyCreatedAtBetween(Date from, Date to);
}
修改UserRepository
,添加待扩展的UserRepositoryCustom
接口:
@Repository
public interface UserRepository extends UserRepositoryCustom, MongoRepository {
}
创建您的实现 class 以实现 UserRepositoryCustom
接口中定义的方法。
public class UserRepositoryImpl implements UserRepositoryCustom {
@Autowired
MongoTemplate mongoTemplate;
@Override
public ArrayList<User> findbyCreatedAtBetween(Date from, Date to) {
return mongoTemplate.find(
Query.addCriteria(Criteria.where("createdAt").gte(from).lte(to));
}
}
我在 Mongo 中的文档结构是这样的:
db.user.find()
{
"_id" : ObjectId("560fa46930a8e74be720009a"),
"createdAt" : ISODate("2015-10-03T09:47:56.333Z"),
"message" : "welcome",
}
{
"_id" : ObjectId("560fa46930a8e723e720009a"),
"createdAt" : ISODate("2015-10-03T09:48:25.048Z"),
"message" : "thank you"
}
当我在 Mongo Shell 中使用以下查询查找两个给定时间戳之间的文档时,我得到了正确的结果:
db.user.find({createdAt:{$gte:ISODate("2015-10-03T09:40:25.048Z"),$lte:ISODate("2015-10-03T09:50:56.333Z")}})
我在我的 REST 服务中使用 Mongo 存储库和 Spring 来与 Java 驱动程序一起工作。以下是用户存储库:
public interface UserRepository extends MongoRepository<User, String>
{
ArrayList<User> findbyCreatedAtBetween(Date d1, Date d2);
}
当我在我的服务中进行以下调用时,return 没有任何结果
userRepository.findbyCreatedAtBetween(2015-10-03T09:40:25.048Z, 2015-10-03T09:50:29.006Z)
然而,当我将 d1 设为前一天时,结果是 return: userRepository.findbyCreatedAtBetween(2015-10-02T09:40:25.048Z, 2015-10-03T09:50:29.006Z)
关于如何解决这个问题的任何想法?请帮忙!
将其分解,正在针对 MongoDB 数据库执行带有关键字 Between
的查询,逻辑结果为 {"createdAt" : {"$gt" : d1, "$lt" : d2}}
,因此您有可能无法获得createdAt
日期包含在给定日期范围内的文档,即 d1 < createdAt < d2
,因为给定日期范围不满足条件。作为参考,这些是对 query methods:
查询方式支持的关键字
Keyword Sample Logical result
After findByBirthdateAfter(Date date) {"birthdate" : {"$gt" : date}}
Before findByBirthdateBefore(Date date) {"birthdate" : {"$lt" : date}}
Between findByAgeBetween(int from, int to) {"age" : {"$gt" : from, "$lt" : to}}
作为解决方法,您可能需要使用 @Query
注释。我没有对此进行测试,但您可能想尝试以下自定义查询实现示例:
public interface UserRepository extends MongoRepository<User, String> {
@Query(value = "{ 'createdAt' : {$gte : ?0, $lte: ?1 }}")
public ArrayList<User> findbyCreatedAtBetween(Date from, Date to);
}
如果以上方法对您不起作用,请创建一个自定义界面和您的实现 class 以执行自定义查询。例如,创建一个名称附加 Custom
:
public interface UserRepositoryCustom {
public List<User> findbyCreatedAtBetween(Date from, Date to);
}
修改UserRepository
,添加待扩展的UserRepositoryCustom
接口:
@Repository
public interface UserRepository extends UserRepositoryCustom, MongoRepository {
}
创建您的实现 class 以实现 UserRepositoryCustom
接口中定义的方法。
public class UserRepositoryImpl implements UserRepositoryCustom {
@Autowired
MongoTemplate mongoTemplate;
@Override
public ArrayList<User> findbyCreatedAtBetween(Date from, Date to) {
return mongoTemplate.find(
Query.addCriteria(Criteria.where("createdAt").gte(from).lte(to));
}
}