我写了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和配置(* .ttl)文件,但我迷路了。我该如何告诉Fuzeki将我的图表添加/加载到其数据集中?