1

晚上好,

我是 Java Persistence API 的新手,我想测试阿里巴巴,看看它能做什么。 阿里巴巴网站。我阅读了此处给出的部分示例。我有整个阿里巴巴项目和两个示例文件,我对示例进行了一些修改。

//Document.java
package org.openrdf.example;

import org.openrdf.annotations.Iri;

@Iri(Document.NS + "Document")
public class Document {
public static final String NS = "http://meta.leighnet.ca/rdf/2009/gs#";

@Iri(NS + "title") String title;

public String getTitle() {
    return title;
}
public void setTitle(String title) {
    this.title = title;
}
}

还有我的另一个文件:

//my Main with many imports
public class Main {
public static void main(String[] args) throws java.lang.IllegalAccessException {
    // create a Document
    Document doc = new Document();
    // give it a title
    doc.setTitle("Getting Started");
    System.out.println("Title of the new document: "+doc.getTitle());
    
    // add a Document to the repository
    ObjectConnection con = repository.getConnection();
    // the problem is here

我的问题位于以下行:

ObjectConnection con = repository.getConnection();

我无处声明“存储库”。但是我收到对象类型的错误。

谢谢你的帮助,我希望我的文字是可以理解的,因为这是我在这里的第一篇文章。

4

1 回答 1

2

您可以像这样创建内存中的 Sesame 存储库:

// create a repository
Repository store = new SailRepository(new MemoryStore());
store.initialize();

// wrap in an object repository
ObjectRepositoryFactory factory = new ObjectRepositoryFactory();
ObjectRepository repository = factory.createRepository(store);
于 2013-05-15T18:02:30.737 回答