我正在尝试使用owlim 库来编辑 owl 本体文件。我从 owl 库中包含的“入门”示例代码开始。当我将这个库与这个示例代码一起使用时,一切都很完美。它使用 de owlim.ttl 文件来配置存储库,其中也包含此存储库的路径:
(owlim.ttl:)
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix rep: <http://www.openrdf.org/config/repository#>.
@prefix sr: <http://www.openrdf.org/config/repository/sail#>.
@prefix sail: <http://www.openrdf.org/config/sail#>.
@prefix owlim: <http://www.ontotext.com/trree/owlim#>.
[] a rep:Repository ;
rep:repositoryID "owlim" ;
rdfs:label "OWLIM Getting Started" ;
rep:repositoryImpl [
rep:repositoryType "openrdf:SailRepository" ;
sr:sailImpl [
owlim:ruleset "owl-horst-optimized" ;
owlim:entity-index-size "5000000" ;
owlim:cache-memory "180m" ;
sail:sailType "swiftowlim:Sail" ;
owlim:noPersist "false" ;
owlim:storage-folder "storage" ;
owlim:base-URL "http://example.org/owlim#" ;
owlim:repository-type "in-memory-repository" ;
owlim:imports "./sesame/example.rdfs" ;
owlim:defaultNS "http://example.org/owlim#" ;
]
].
在文档站点上,他们明确表示:
'With the example set up, OWLIM-Lite loads two ontologies at start up as specified by the imports parameter in the repository configuration file, i.e. owlim.ttl'
,
但是当我将该路径更改为另一个文件时,我仍然得到与以前相同的输出。即使我尝试更改此 example.rdfs 存储库中的某些内容,查询的结果也不会改变。有谁知道问题可能是什么?路径是否在其他地方指定?