我使用Goole的App Engine的建立我的REST API,我已經打上我的班級爲PersistenceCapable也是我得到了我的定義@PrimaryKey 和也被標記爲@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY),我也已經生成了EndPoints。但是當我在終端窗口中輸入一個curl命令來插入一個新的實體或註冊表時,它不起作用。這是代碼:生成自動ID IdGeneratorStrategy
@PersistenceCapable(identityType = IdentityType.APPLICATION)
class Student{
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Long id;
private String studentName;
....
....
....
}
這是curl命令,並從我的本地服務器的響應。當我嘗試插入一個新的實體
curl -H 'Content-Type: application/json' -d'{"studentName": "myname"}' htto://localhost:8889/_ah/api/utp/v1/student
,這是從本地服務器的響應。
"error" : {
"message" : "javax.jdo.JDOFatalInternalException: El valor de llave dado para construir una identidad de SingleFieldIdentity de tipo \"class javax.jdo.identity.LongIdentity\" para la clase \"class com.alex.wserver.Student\" es nulo.\nNestedThrowables:\norg.datanucleus.exceptions.NucleusException: El valor de llave dado para construir una identidad de SingleFieldIdentity de tipo \"class javax.jdo.identity.LongIdentity\" para la clase \"class com.alex.wserver.Student\" es nulo."
我一直在想,ID是自動生成插入。但這不是在這裏發生的。不像插入一個ID一起
- 是我的錯類?
- 是我的POST/json請求好嗎?
在此先感謝。
和日誌說什麼? (我也讀不出你上面發佈的那些象形文字;我也沒有看到Java持久代碼,就像pm.makePersistent一樣)。 – DataNucleus 2013-02-20 05:35:33
你可以直接粘貼代碼片段。圖片有點小,很難弄清楚。 – 2013-02-20 09:34:59
我已經改由代碼圖像剪斷......對形象不好對不起...... – AlexSanchez 2013-02-21 00:32:05