我正在使用spring数据mongodb。我在存储库中创建了带有两个参数的自定义查询。如果我不传递任何字段值,则应通过排除该字段来进行查询。
@Repository
public interface Mongopost extends MongoRepository<Post,String> {
@Query("{postId:'?0',postLikes:'?1'}")
List<Post> postlistmongo(String postId,int postLikes);
}