我想在中使用自定义函数 BIND
在耶拿的表达,但它不工作。
举个小例子,我有一个owl本体 Human
类,具有以下特性 int
数据属性:
Age BirthDate
我的问题如下:
prefix human: <http://www.semanticweb.org/scdsahv/ontologies/2021/0/human#>
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix xsd: <http://www.w3.org/2001/XMLSchema#>
prefix fn: <http://www.w3.org/2005/xpath-functions#>
prefix owl: <http://www.w3.org/2002/07/owl#>
prefix da: <http://www.my.namespace/test>
SELECT ?elt ?value
WHERE {
?elt rdf:type human:Human .
?elt human:Age ?age .
?elt human:BirthDate ?birthDate .
BIND (da:testFunction(?age, ?birthDate) as ?value)
}
我在这里使用了有关过滤器函数的jena文档
所以我创建了一个定制工厂:
public class MyFactory implements FunctionFactory {
@Override
public Function create(String fctName) {
return new testFunction();
}
}
具有以下函数代码:
public class testFunction extends FunctionBase2 {
public testFunction() {
super();
}
@Override
public NodeValue exec(NodeValue nv, NodeValue nv1) {
float f1 = nv.getFloat();
float f2 = nv1.getFloat();
float f = f1 + f2;
return NodeValue.makeFloat(f);
}
}
我注册了工厂:
MyFactory theFactory = new MyFactory();
FunctionRegistry.get().put("http://www.my.namespace/test#testFunction", theFactory);
我在jena中执行查询时没有任何异常,但每个结果只包含 ?elt
元素,而不是 ?value
. 在调试器中,我看到没有 testFunction
示例已创建。我做错了什么?
当然如果我用同样的 BIND
表达式,但使用更简单的表达式,例如:
BIND (?age as ?value)
我有 ?value
在结果中。
1条答案
按热度按时间xjreopfe1#
我的错误是:
但应该是: