我应该包含什么(使用 maven)才能在我的 Java 应用程序中使用嵌入式 sesame 存储库
我想在我的 Java 应用程序中使用嵌入式 openRDF 芝麻存储库。我找不到信息,即我需要在我的 Java 应用程序中包含(放置在我的 pom.xml 中)以使其运行的最小库集。有人可以给我一个提示或一个对我有帮助的网站链接吗?
I would like to use an embedded openRDF sesame repository in my Java application. I can not find information what is a minimum set of libraries that I need to include -- place in my pom.xml -- in my Java application to have it running. Can anybody give me a hint or a link to a website that would help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Sesame 有一个“包括一切和厨房水槽”maven 依赖项:
包括整个框架。如果您想精简它并仅包含特定功能,则可以添加对子部分的特定依赖项。例如,如果您需要的只是一个简单的内存三重存储,您可能可以添加这两个依赖项:
对于存储库 API:
对于实际存储后端:
There is an "include everything and the kitchen sink" maven dependency for Sesame:
That includes the entire framework. If you want to trim that down and only include specific features, you can instead add specific dependencies on subparts. For example, if all you need is a simple in-memory triplestore, you could probably do with adding these two dependencies:
for the repository API:
for the actual storage backend:
检查 Maven 存储库浏览器并搜索 openRDF。
Check the Maven Repository Browser and search for openRDF.