无法获取瞬态实例的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
}
}
当我要保存时,它会给出错误。