Reputation: 11
Can somebody please tell what might be the cause of the following error?
Error in meta-data for com.admin.AdminLogin.empId: Unsupported primary key type: int
Upvotes: 1
Views: 385
Reputation: 1032
int is unsupported type for AppEngine keys, use Long instead.
See http://code.google.com/appengine/docs/java/datastore/jdo/creatinggettinganddeletingdata.html#Keys
Hope this help
Upvotes: 3