晚上好,
我是Java Persistence API的新手,我想测试AliBaba看看它能做什么。
AliBaba website。我读了the exemple given here的一部分。我有整个AliBaba项目和两个文件作为示例,我修改了一些示例。
//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();
我无处声明“存储库”。
但是对象类型出现错误。
谢谢您的帮助,我希望我的文字可以理解,因为这是我在这里的第一篇文章。
最佳答案
您可以这样创建一个内存中的芝麻存储库:
// 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);