我有这样的实体:用户 - > Blague->分数,其中用户有无数的blagues(孩子)和blague有一个分数。
我正试图从一个角色中获得分数,但是当我写下这个时:
User userPoster = ofy().load().type(User.class).id(5066549580791808L).now();
Blague blague = ofy().load().type(Blague.class).parent(userPoster).id(4609152743636992L).now();
Score score = ofy().load().type(Score.class).parent(blague).id(5735052650479616L).now();
resp.getWriter().println(userPoster);
resp.getWriter().println(blague);
resp.getWriter().println(score);
(ids是更正)得分为空,与blague和userPoster不同。为什么它是空的?
实体的创建方式如下:
@ApiMethod(
name = "addBlague",
path = "addBlague",
httpMethod = ApiMethod.HttpMethod.POST)
public void addBlague(
@Named("category") EnumCategory category,
@Named("type") EnumType type,
@Named("lenght") EnumLenght lenght,
@Named("keywords") List<String> keywords,
@Named("text") String text,
@Named("userId") Long userId){
Key<User> userKey = Key.create(User.class, userId);
Blague blague = new Blague(category, type, lenght, text, userKey);
ofy().save().entity(blague).now();
Key<Blague> blagueKey = Key.create(Blague.class, blague.getId());
Score score = new Score(0, 0, blagueKey);
ofy().save().entity(score).now();
for (String word : keywords) {
KeyWord keyword = new KeyWord(word, blagueKey);
ofy().save().entity(keyword);
}
}
当然,这些课程已经注册。
如何从争议中获得分数?
由于
修改: Socre代码:
package blagueur;
import java.util.HashMap;
import com.googlecode.objectify.Key;
import com.googlecode.objectify.annotation.Cache;
import com.googlecode.objectify.annotation.Entity;
import com.googlecode.objectify.annotation.Id;
import com.googlecode.objectify.annotation.Index;
import com.googlecode.objectify.annotation.Parent;
@Entity
@Index
@Cache
public class Score {
@Id
private Long id;
private int likes;
private int dislikes;
private HashMap<String, Boolean> voters;
@Parent
private Key<Blague> blagueKey;
private Score() {}
public Score(int likes, int dislikes, Key<Blague> blague) {
this.likes = likes;
this.dislikes = dislikes;
this.blagueKey = blague;
this.voters = new HashMap<String, Boolean>();
}
public Long getId() {
return id;
}
public int getLikes() {
return likes;
}
public int getDislikes() {
return dislikes;
}
public void addVote(Long userId, boolean like){
voters.put(String.valueOf(userId), like);
if (like){
likes++;
}
else{
dislikes++;
}
}
public void removeVote(Long userId){
String id = String.valueOf(userId);
boolean like = voters.get(String.valueOf(userId));
voters.remove(String.valueOf(userId));
if (like){
likes--;
}
else{
dislikes--;
}
}
public Key<Blague> getBlagueKey() {
return blagueKey;
}
}
答案 0 :(得分:3)
您需要非常小心地维护密钥层次结构。
您声明您的预期实体层次结构是用户 - &gt; Blague - &gt;分数,但下面的代码不会这样做:
Key<User> userKey = Key.create(User.class, userId);
Blague blague = new Blague(category, type, lenght, text, userKey);
ofy().save().entity(blague).now();
Key<Blague> blagueKey = Key.create(Blague.class, blague.getId());
Score score = new Score(0, 0, blagueKey);
ofy().save().entity(score).now();
创建blagueKey时,不要将userKey用作父级。 虽然我不鼓励你编写的代码风格,但如果你想这样做,你需要这样做:
...
Key<Blague> blagueKey = Key.create(userKey, Blague.class, blague.getId());
...
一般情况下,您应该让objectify使用Ref<User>
,Ref<Blague>
作为@Parent
对象来处理此问题,或者如果您必须创建Key对象,请使用Key.create(T pojo)
而不是自己管理密钥。