有人能举例说明使用morphia和mongodb进行映射的代码吗? 这是我的类,其中包含数据库字段。我不知道该怎么做 在morphia和mongodb之间建立联系。
import com.google.code.morphia.annotations.*;
//@Entity
//define the name of the collection where this entity will be stored
@Entity("tabes")
class MappingMorphia {
@Id
String id;
String FACILITY;
String HOST;
String MESSAGE;
String PID;
String PRIORITY;
String PROGRAM;
int SEQNUM;
String SOURCE;
String SOURCEIP;
String TAGS;
//getters and setters
}
答案 0 :(得分:2)
在morphia github网站上有很多例子:https://github.com/mongodb/morphia/wiki
答案 1 :(得分:0)
Mongodb不理解课程,或者至少不是你的想法。但是,有一个名为mongoose的模块可以让您为对象建模。我认为这适合你。
这是mongoose的文档链接