2010-08-20 47 views

回答

4

是的,你可以使用一個長

@PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy。 IDENTITY) private Long id;

或String

@PrimaryKey 私人字符串名稱;

http://code.google.com/appengine/docs/java/datastore/creatinggettinganddeletingdata.html

+0

公共類提交{ \t @PrimaryKey \t私人字符串IP; } 不起作用 – dayscott 2010-08-21 18:16:25

+1

您是否在類之前放置了@PersistenceCapable(identityType = IdentityType.APPLICATION)。否則,你將不得不告訴我,你正在得到什麼錯誤 – dunelmtech 2010-08-21 19:57:45

+0

沒有。 eclipse將「APPLICATION」標記爲錯誤(雖然它在api中:/) – dayscott 2010-08-22 19:18:17

相關問題