我有一堆使用 Apache Jena querybuilder API(SelectBuilder
类)的代码。我正在尝试将这样的术语添加到我现有的 SPARQL 查询中:
(?a ?b ?c) :hasMagicProperty ?this .
我已验证此查询在 TopBraid 中有效,但我不知道如何(?a, ?b, ?c)
在 Jena API 中表示。我需要做什么才能将此 Vars 列表转换为有效的 Jena 资源节点?
我愿意探索替代的 SPARQL 构建框架,如果它们对类型文字、IRI 和过滤器以及这个列表结构有强大的支持。我浏览了其他几个用于构建 SPARQL 查询的框架,但它们似乎都没有列表结构。
编辑
我的查询构建代码(在 Groovy 中)看起来像这样:
def selectBuilder = new SelectBuilder()
selectBuilder.addPrefixes(...)
def thisVar = Var.alloc('this')
selectBuilder.addOptional(thisVar, 'rdf:type', ':MyEntity')
def aVar = Var.alloc('a')
def bVar = Var.alloc('b')
def cVar = Var.alloc('c')
List<Var> abc = [aVar, bVar, cVar]
//this doesn't work!!!
selectBuilder.addWhere(abc, ':hasMagicProperty', thisVar)
selectBuilder.addWhere(aVar, ':hasACode', 'code A')
selectBuilder.addWhere(bVar, ':hasBCode', 'code B')
selectBuilder.addWhere(cVar, ':hasCCode', 'code C')
def sparqlQuery = selectBuilder.buildString()
我花了几个小时尝试使用 RDFList 类,但我还没有弄清楚。我会继续努力,看看我能不能摸到它。与此同时,任何帮助将不胜感激。:)
编辑
以下是使用 RDFList 的不成功尝试:
//this code does not work!
def varNode = NodeFactory.createVariable('a')
def model = ModelFactory.createDefaultModel()
def rdfNode = model.asRDFNode(varNode)
def rdfList = new RDFListImpl(model.createResource().asNode(), model)
//this line throws an exception!!
rdfList.add(rdfNode)
selectBuilder.addWhere(rdfList, ':hasMagicProperty', thisVar)
//com.hp.hpl.jena.shared.PropertyNotFoundException: http://www.w3.org/1999/02/22-rdf-syntax-ns#rest