How do I start a Fuseki server from Jena API Eclipse project?

后端 未结 1 969
隐瞒了意图╮
隐瞒了意图╮ 2021-01-25 23:25

Hi I am new to the Semantic Web domain and Apache Jena enviroments too, which is why I am posting this question.

I have a project that makes use of Jena API. And when I

相关标签:
1条回答
  • 2021-01-26 00:03

    Like any java program with command line execution, you can call main directly:

    org.apache.jena.fuseki.FusekiCmd.main("--loc=DB", "--update", "/ds") ;
    

    This can be in a forked thread if you want.

    0 讨论(0)
提交回复
热议问题