我想使用Objectify来查询Google Cloud Datastore。基于已知键值对查找记录的适当方法是什么?该记录在数据库中,我通过Google的数据存储区查看器进行了验证。
这是我的方法存根,它触发NotFoundException:
@ApiMethod(name="getUser")
public User getUser() throws NotFoundException {
String filterKey = "googleId";
String filterVal = "jochen.bauer@gmail.com";
User user = OfyService.ofy().load().type(User.class).filter(filterKey, filterVal).first().now();
if (user == null) {
throw new NotFoundException("User Record does not exist");
}
return user;
}
这是User类:
@Entity
public class User {
@Id
Long id;
private HealthVault healthVault;
private String googleId;
public User(String googleId){
this.googleId = googleId;
this.healthVault = new HealthVault();
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public HealthVault getHealthVault() {
return healthVault;
}
public void setHealthVault(HealthVault healthVault) {
this.healthVault = healthVault;
}
public String getGoogleId() {
return googleId;
}
public void setGoogleId(String googleId) {
this.googleId = googleId;
}
}
答案 0 :(得分:2)
我认为它因交易而失败。你需要做一个无翻译的电话,如:
User user = OfyService.ofy().transactionless().load().type(User.class).filter(filterKey, filterVal).first().now();
有关App Engine交易的更多信息: https://cloud.google.com/appengine/docs/java/datastore/transactions https://github.com/objectify/objectify/wiki/Transactions
EDIT 您的对象需要@Index注释。它会将字段添加到数据存储区索引。只能索引索引中的属性。过滤方法就是其中之一。
@Id
Long id;
@Index
private HealthVault healthVault;
@Index
private String googleId;
P.S。使用googleId jochen.bauer@gmail.com删除您的对象,并在更新实体后再次将其写入数据库。客体化会找到它。
答案 1 :(得分:0)
首先在字段模型中添加@Index
。我没有在您的模型中看到filterVal
作为电子邮件。即便如此,要使基于filterVal
的实体假设googleId
是您实体的字段。
User user = OfyService.ofy().load().type(User.class).filter("googleId", filterVal).now();
因此,如果您的filterKey
是您实体的ID。
User user = OfyService.ofy().load().key(Key.create(User.class, filterKey)).now();