有人可以給我一個用morphia和mongodb進行映射的代碼示例嗎? 這是我的班,其中包含數據庫字段。我不知道如何 使嗎啡和mongodb之間的聯繫。如何從mogodb創建類
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
}
他用嗎啡(或試圖),使對象模型的工作就好了。 – evanchooly
在這裏,有我的喜歡 – lascort