0

在 jcouchdb 中有一个实用类 org.jcouchdb.util.CouchDBUpdater,它允许将文档从本地文件系统更新到 CouchDB(例如用于将设计文档复制到 CouchDB)。ektorp 有类似的东西吗?

4

1 回答 1

0

你有两个选择:

  1. 使用@View、@GenerateView、@Filter、@ShowFuction、@ListFuction 注释将您的设计文档嵌入到您的存储库类中。相应的设计文档将在应用程序启动时自动更新。请参阅http://ektorp.org/reference_documentation.html#d100e753

  2. 实现一个 org.ektorp.dataload.DataLoader,它允许您使用任何类型的文档引导您的数据库。请参阅http://ektorp.org/reference_documentation.html#d100e1170

于 2012-05-23T07:00:26.173 回答