2014-03-13 59 views
0

有人可以給我一個用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 
} 

回答

0

Mongodb不瞭解類,或者至少不是你所想的。然而,有一個叫mongoose的模塊可以讓你的模型成爲你的對象。我認爲這將適合你。

下面是貓鼬的文檔的鏈接

http://mongoosejs.com/docs/documents.html

+1

他用嗎啡(或試圖),使對象模型的工作就好了。 – evanchooly

+0

在這裏,有我的喜歡 – lascort