如何在将查询注释与带有 spring 数据的 MongoRepository 一起使用时显示查询

我在春季启动中使用MongoRepository来访问mongo:

public interface MongoReadRepository extends MongoRepository<User, String> {
    @Query(value = "{$where: 'this.name == ?0'}", count = true)
    public Long countName(String name);
}

它可以工作,但我想知道确切查询它访问mongo

如何做到这一点?

我尝试在如下属性中添加一些配置:

logging.level.org.springframework.data.mongodb.core.MongoTemplate=DEBUG
logging.level.org.springframework.data.mongodb.repository.Query=DEBUG

并且不起作用。

有人可以帮忙吗?


答案 1

我在 application.properties 中添加以下行,工作正常:

logging.level.org.springframework.data.mongodb.core.MongoTemplate=DEBUG

用于查询:

@Query("{$and: [{'$or' : [{ 'name': {$regex : ?0, $options: 'i'}}, {'description': {$regex : ?1, $options: 'i'}}]}, { 'deleted' : ?2 }]}")

获取此日志:

2016-09-27 10:53:26.245 DEBUG 13604 --- [nio-9090-exec-3] o.s.data.mongodb.core.MongoTemplate      : find using query: { "$and" : [ { "$or" : [ { "name" : { "$regex" : "c" , "$options" : "i"}} , { "description" : { "$regex" : "c" , "$options" : "i"}}]} , { "deleted" : false}]} fields: null for class: class com.habber.domain.Entity in collection: entities

答案 2

另外,您可以使用yml配置文件,将其放在您的apprament.yml文件中。

logging:
  level:
    org.springframework.data.mongodb.core.MongoTemplate: DEBUG