我正在使用 Goole App Engine 来构建我的 REST API,我已经将我的类标记为PersistenceCapable并且我定义了我的@PrimaryKey并且还标记为@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY),我已经有了 EndPoints生成。但是当我在终端窗口中键入 curl 命令以插入新实体或注册表时,它不起作用。这是代码:
@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 请求好吗?
提前致谢。