无法为瞬态实例获取DBObject,首先使用grails和mongodb保存有效实例

时间:2015-06-20 05:20:49

标签: mongodb grails

无法获取瞬态实例的DBObject,首先保存有效实例。

我使用的是grails 2.2.1和mongodb 1.2.0。有一个域如下。

class Person{
 static mapWith = "mongo"
 static hasMany = [categories:Category , address:Address];

 String firstName;
 String lastName;
 String emailId;
 int age;
 String contactNumber;
 String sex;
 byte [] personImage;
 String identity;
 static constraints = {
    identity nullable: true , inList:["Driving License"] , unique: true;
    emailId email: true , unique: true
    contactNumber unique: true 
 }
}

当我要保存时,它会给出错误。

0 个答案:

没有答案