我定义了一个使用Objectify
处理数据存储的Google Cloud Endpoints。问题是我的模型使用objectify com.googlecode.objectify.Key
类。
@Entity
public class RealEstateProperty implements Serializable {
@Id
private Long id;
@Parent
private Key<Owner> owner;
private String name;
private Key<Address> address;
}
在我的端点中,我定义了一种创建
RealEstateProperty
的方法:@ApiMethod(name = "create", path = "properties", httpMethod = HttpMethod.POST)
public void create(RealEstateProperty property, User user) throws Exception {
}
在
API Explorer
中,create
方法需要一个表示Key
的字符串作为地址。问题是我想提供地址而不是Key
。是否可以使用
objectify
创建端点?如果是这样,您如何设计数据模型以处理Key
? 最佳答案
您可以创建一个用于通过API(端点)进行通信的类,该类包含一个地址字段而不是键字段:
public class RealEstatePropertyAPI implements Serializable {
private Long id;
private Key<Owner> owner;
private String name;
private Address address;
}
并在您的端点中:
@ApiMethod(name = "create", path = "properties", httpMethod = HttpMethod.POST)
public void create(RealEstatePropertyAPI propertyAPI, User user) throws Exception {
//ie: get address from propertyAPI and find in datastore or create new one.
}
或者只是将另一个参数添加到您的端点。
关于google-app-engine - Google Cloud Endpoint和Objectify,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17918410/