我写了com.hp.hpl.jena.graph.impl.GraphBase的实现
package mygraph;
import (...)
public class MyGraph extends GraphBase
{
public MyGraph()
{
}
@Override
protected ExtendedIterator<Triple> graphBaseFind( TripleMatch m )
{
return //(...)
}
}
现在,我想将此图加载到Apache Fuseki中。我已经阅读了Assembler和config(* .ttl)文件,但是迷路了。我应该如何告诉Fuzeki将图形添加/加载到数据集中?
最佳答案
查看here概述的步骤。
另外,请查看TDB的源代码以了解其注册方式(com.hp.hpl.jena.tdb.assembler程序包)。