2

我定义了一个Objectify用于处理数据存储的 Google Cloud Endpoints。问题是我的模型使用了 objectifycom.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

4

2 回答 2

3

您可以创建一个用于通过 API(端点)进行通信的类,其中包含地址字段而不是 Key 字段:

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.
}

或者只是将另一个参数添加到您的端点。

于 2013-07-29T09:23:18.427 回答
3

是的,似乎端点不支持 Objectify Keys。这也给我带来了一些问题。为了避免在 Maven 构建中引发的错误,我注释了要被端点忽略的 Key 属性https://developers.google.com/appengine/docs/java/endpoints/annotations

 @ApiResourceProperty(ignored = AnnotationBoolean.TRUE)

使用端点添加新的 RealEstateProperty 时,请在端点中使用字符串参数创建地址对象。将新的 Address 对象作为参数传递给 RealEstateProperty 构造函数,并在构造函数中创建和分配键。

@Entity
public class RealEstateProperty implements Serializable {

  @Id
  private Long id;
  @Parent
  private Key<Owner> owner;
  private String name;
  @ApiResourceProperty(ignored = AnnotationBoolean.TRUE)
  private Key<Address> address;

}
于 2014-01-13T14:30:22.067 回答