gpt4 book ai didi

java - Cypher 使用不在实体中的参数创建查询

转载 作者:行者123 更新时间:2023-12-01 17:54:45 26 4
gpt4 key购买 nike

我有一个包含所有必需注释和 getter 的实体。

public class SomeEntity {
private String id;
private String name;
}

我有一个存储库

public interface SomeRepository extends Neo4jRepository<SomeEntity, String> {

@Query(value="some query")
void someMethod(String id, String name, String parameter)
}

我可以以某种方式传递parameter变量来查询而不在实体中定义它吗?

最佳答案

您可以使用占位符 {0}..{n} 来匹配方法的参数

@Query(value="MATCH (a:A) where a.id = {0} AND a.name = {1} and a.param = {2}")
void someMethod(String id, String name, String parameter)

关于java - Cypher 使用不在实体中的参数创建查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60738903/

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