在 couchbase N1Ql @query 中使用 IN 子句或使用 couchbase JPA 中的 findAll(keys)
Using IN clause in couchbase N1Ql @query or use findAll(keys) from couchbase JPA
我正在使用 Spring couchbase JPA 并尝试通过提供键列表来获取文档。我的存储库结构类似于
public interface EmployeeRepo
extends CouchbasePagingAndSortingRepository<Employee, String>, EmployeeCustomRepo {
我有一个员工 ID 列表来搜索和获取相应的文档。我尝试使用 curdRepository
中的方法
public List<Employee> findAllById(List<String> empIds) {
return employeeRepo.findAll(empIds);
}
但我得到异常::
org.springframework.dao.InvalidDataAccessResourceUsageException:
View employee/all does not exist.; nested exception is
com.couchbase.client.java.error.ViewDoesNotExistException: View
employee/all does not exist.
甚至我也尝试将我的键列表包装到一个 Iterable 对象中。但例外情况保持不变。
public List<Employee> findAllById(List<String> empIds) {
Iterable<String> itrKeys = empIds;
return employeeRepo.findAll(itrKeys);
}
此外,我尝试将 N1QL 与 @query over 方法一起使用
@Query("#{#n1ql.selectEntity} WHERE meta().id IN $ids AND #{#n1ql.filter}")
Collection<ProductCopy> findAllById(@Param("ids") JsonArray ids);
我将键列表转换为 JsonArray。
及以上 findAllById() 方法不会抛出任何异常,但即使我有匹配的键也不会给出任何文档。
@Query("#{#n1ql.selectEntity} USE KEYS ($ids) ")
Collection<ProductCopy> findByIdIn(@Param("ids") JsonArray ids);
并且在执行 findByIdIn() 时我得到了这个异常
n1ql 错误:{"msg":"缺少或无效的主键。
My question is why findAll(Iterable id)/findAll(List id) is not working,when findOne(String id) works smooth and how do I create a parameterized N1QL query which can take multiple items in an IN statement?
尝试同时添加@N1qlPrimaryIndexed 和@ViewIndexed 注释,如下例所示:
@N1qlPrimaryIndexed
@ViewIndexed(designDoc = "businessUnity")
public interface BusinessUnityRepository extends CouchbaseRepository<BusinessUnity, String>{
List<BusinessUnity> findByCompanyId(String companyId);
}
此外,您还可以查看这个教程:
https://blog.couchbase.com/couchbase-spring-boot-spring-data/
我正在使用 Spring couchbase JPA 并尝试通过提供键列表来获取文档。我的存储库结构类似于
public interface EmployeeRepo
extends CouchbasePagingAndSortingRepository<Employee, String>, EmployeeCustomRepo {
我有一个员工 ID 列表来搜索和获取相应的文档。我尝试使用 curdRepository
中的方法 public List<Employee> findAllById(List<String> empIds) {
return employeeRepo.findAll(empIds);
}
但我得到异常::
org.springframework.dao.InvalidDataAccessResourceUsageException:
View employee/all does not exist.; nested exception is
com.couchbase.client.java.error.ViewDoesNotExistException: View
employee/all does not exist.
甚至我也尝试将我的键列表包装到一个 Iterable 对象中。但例外情况保持不变。
public List<Employee> findAllById(List<String> empIds) {
Iterable<String> itrKeys = empIds;
return employeeRepo.findAll(itrKeys);
}
此外,我尝试将 N1QL 与 @query over 方法一起使用
@Query("#{#n1ql.selectEntity} WHERE meta().id IN $ids AND #{#n1ql.filter}")
Collection<ProductCopy> findAllById(@Param("ids") JsonArray ids);
我将键列表转换为 JsonArray。 及以上 findAllById() 方法不会抛出任何异常,但即使我有匹配的键也不会给出任何文档。
@Query("#{#n1ql.selectEntity} USE KEYS ($ids) ")
Collection<ProductCopy> findByIdIn(@Param("ids") JsonArray ids);
并且在执行 findByIdIn() 时我得到了这个异常 n1ql 错误:{"msg":"缺少或无效的主键。
My question is why findAll(Iterable id)/findAll(List id) is not working,when findOne(String id) works smooth and how do I create a parameterized N1QL query which can take multiple items in an IN statement?
尝试同时添加@N1qlPrimaryIndexed 和@ViewIndexed 注释,如下例所示:
@N1qlPrimaryIndexed
@ViewIndexed(designDoc = "businessUnity")
public interface BusinessUnityRepository extends CouchbaseRepository<BusinessUnity, String>{
List<BusinessUnity> findByCompanyId(String companyId);
}
此外,您还可以查看这个教程:
https://blog.couchbase.com/couchbase-spring-boot-spring-data/