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 に答える