0

我得到了这个 “javax.jdo.JDOFatalUserException:don.Comment.id 的元数据错误:不能有 java.lang.String 主键并且是子对象(拥有字段是 don.Post.comments)。NestedThrowables: "

运行我的 grails + app-engine webapp 时

我怎样才能解决这个问题?

class Comment.groovy

import javax.jdo.annotations.*;

@PersistenceCapable(identityType = IdentityType.APPLICATION, detachable="true")
class Comment implements Serializable {

@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
String id

@Persistent(mappedBy="comments")
Post post

@Persistent
String name

@Persistent
String email

@Persistent
String url

static constraints = {
    id( visible:false)
}
}

class Post.groovy
    @PersistenceCapable(identityType = IdentityType.APPLICATION, detachable="true")
    class Post implements Serializable {

@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
Long id

@Persistent
String title

@Persistent 
String content

//static hasMany = [comments:Comment]

@Persistent(defaultFetchGroup = "true")
Comment comments

static constraints = {
    id( visible:false)
}
}
4

1 回答 1

2

对于子类,主键必须是 com.google.appengine.api.datastore.Key 值(或编码为字符串),请参阅http://code.google.com/appengine/docs/java/datastore/creatinggettinganddeletingdata。 html#键

于 2010-01-15T04:23:48.387 回答