在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:helun/Ektorp开源软件地址:https://github.com/helun/Ektorp开源编程语言:Java 99.9%开源软件介绍:EktorpEktorp is a persistence API that uses CouchDB as storage engine. The goal of Ektorp is to combine JPA like functionality with the simplicity and flexibility that CouchDB provides. FeaturesHere are some good reasons why you should consider using Ektorp in your project:
DocumentationSimple APIIt is very easy to get started with Ektorp: HttpClient httpClient = new StdHttpClient.Builder()
.url("http://localhost:5984")
.build();
CouchDbInstance dbInstance = new StdCouchDbInstance(httpClient);
CouchDbConnector db = new StdCouchDbConnector("mydatabase", dbInstance);
db.createDatabaseIfNotExists();
Sofa sofa = db.get(Sofa.class, "ektorp");
sofa.setColor("blue");
db.update(sofa); Out-of-the-Box CRUDEktorp features a generic repository support class. It provides all Create, Read, Update and Delete operations for a persistent class. Here's how a SofaRepository implemented with the generic repository looks like public class SofaRepository extends CouchDbRepositorySupport<Sofa> {
public SofaRepository(CouchDbConnector db) {
super(Sofa.class, db);
}
} This repository will have the following methods "out of the box": SofaRepository repo = new SofaRepository(db);
repo.add(Sofa s);
repo.contains("doc_id");
Sofa sofa = repo.get("doc_id");
repo.update(Sofa s);
repo.remove(Sofa s);
List<Sofa> repo.getAll(); Convenient Management of View DefinitionsThe concept of views in CouchDB can be a little daunting at first and there will always be the task of managing view definitions to go along your mapped classes. Ektorp provides two solutions for this: Embedded View DefinitionsIt is possible to embed view definitions in your repository classes through a @View annotation: @View( name="complicated_view", file = "complicated_view.json")
public class BlogPostRepository extends CouchDbRepositorySupport<BlogPost> {
@Autowired
public BlogPostRepository(@Qualifier("blogPostDatabase") CouchDbConnector db) {
super(BlogPost.class, db);
initStandardDesignDocument();
}
@Override
@View( name="all", map = "function(doc) { if (doc.title) { emit(doc.dateCreated, doc._id) } }")
public List<BlogPost> getAll() {
ViewQuery q = createQuery("all").descending(true);
return db.queryView(q, BlogPost.class);
}
@GenerateView
public List<BlogPost> findByTag(String tag) {
return queryView("by_tag", tag);
}
} Automatic view generation for finder methodsFinder methods annotated with @GenerateView will have their view definitions automatically created. CouchDbRepositorySupport will generate a "by_tag" view in CouchDB at application start up for the method "findByTag" in the example above. Simple and Powerful JSON / Object MappingThe JSON / Object mapping in Ektorp is handled by the excellent Jackson JSON library. Jackson makes it easy to map the common cases and provides for instance the possibility to map polymorph types for more advanced use cases. All persistent objects managed by Ektorp need to define properties for id and revision and they need to be accessible by getters and setters. Here's an trivial example class: import org.codehaus.jackson.annotate.*;
@JsonWriteNullProperties(false)
@JsonIgnoreProperties({"id", "revision"})
public class Sofa {
@JsonProperty("_id")
private String id;
@JsonProperty("_rev")
private String revision;
private String color;
public void setId(String s) {
id = s;
}
public String getId() {
return id;
}
public String getRevision() {
return revision;
}
public void setColor(String s) {
color = s;
}
public String getColor() {
return color;
}
} Querying ViewsThere are several methods for querying CouchDB views from Ektorp. Query for ObjectsIf the view's result value field is a document, Ektorp can load the result as a List of Objects ViewQuery query = new ViewQuery()
.designDocId("_design/Sofa")
.viewName("by_color")
.key("red");
List<Sofa> redSofas = db.queryView(query, Sofa.class); Scalar queriesIt is possible to query for scalar values. Currently just String and int values are supported. ViewQuery query = new ViewQuery()
.designDocId("_design/somedoc")
.viewName("some_view_name");
ViewResult result = db.queryView(query);
for (ViewResult.Row row : result.getRows()) {
String stringValue = row.getValue();
int intValue = row.getValueAsInt();
} It is of course possible to parse a string value as JSON. View Result as Raw JSON StreamThe most flexible method is query for stream. The result is returned as a stream. ViewQuery query = new ViewQuery()
.designDocId("_design/somedoc")
.viewName("view_with_huge_result");
InputStream data = db.queryForStream(query);
// ...
data.close(); Try it Outmaven repositoryDownload binaries fromIf you are using Maven: <dependency>
<groupId>org.ektorp</groupId>
<artifactId>org.ektorp</artifactId>
<version>1.4.4</version>
</dependency> Getting HelpYou can usually get quick answers at the Ektorp google group |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论