我有以下问题:
java对象包含两个核心数据存储类型数组(com.google.appengine.api.datastore.Text和java.util.Date),以及一个int(用于存储数组中当前填充的位置)和其他一些领域。
我相信文档说明核心数据类型的数组应该没问题(参见http://code.google.com/appengine/docs/java/datastore/jdo/dataclasses.html,在“类和字段注释”下。)
使用名为“updateAnswer”的方法更新对象。调用此方法时,对象确实已更新(int递增并正确存储),但数组从不存储除null之外的任何内容。
如果有人能指出我的错误所在,我将不胜感激。
这是对象(及其父对象,为了完整性):
@PersistenceCapable
public class TextualAnswer extends Answer {
@Persistent
private Text textAnswer;
@Persistent
private Date date;
@Persistent
private int pos;
@Persistent
private Text texts[];
@Persistent
private Date dates[];
public TextualAnswer(Key question, Key user, Date date) {
super(question, user, 0);
this.textAnswer = null;
this.date = date;
pos = 0;
texts = new Text[20];
dates = new Date[20];
}
public String getTextAnswer() {
return (textAnswer != null ? textAnswer.getValue() : null);
}
public Date getDate() {
return date;
}
public void updateAnswer(String textAnswer, Date date) {
if (texts.length == pos) { // expand?
Text ttemp[] = texts;
texts = new Text[pos * 2];
System.arraycopy(ttemp, 0, texts, 0, pos);
Date dtemp[] = dates;
dates = new Date[pos * 2];
System.arraycopy(dtemp, 0, dates, 0, pos);
}
texts[pos] = this.textAnswer;
dates[pos] = this.date;
pos++;
this.textAnswer = (textAnswer != null ? new Text(textAnswer) : null);
this.date = date;
}
}
父母:
@PersistenceCapable
@Inheritance(strategy = InheritanceStrategy.SUBCLASS_TABLE)
public abstract class Answer {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Key key;
@Persistent
private Key question;
@Persistent
private Key user;
@Persistent
private double score;
@Persistent
private boolean last;
@Persistent
private Text comment;
public Answer(Key question, Key user, double score) {
this.question = question;
this.user = user;
this.score = score;
last = false;
comment = null;
}
public Key getKey() {
return key;
}
public Key getQuestion() {
return question;
}
public Key getUser() {
return user;
}
public double getScore() {
return score;
}
public boolean isLast() {
return last;
}
public String getComment() {
return comment != null ? comment.getValue() : null;
}
public void setScore(double score) {
this.score = score;
}
public void setLast(boolean last) {
this.last = last;
}
public void setComment(String comment) {
this.comment = comment != null ? new Text(comment) : null;
}
}
结束语。我意识到我可以使用Lists等,如果我不知道这确实是我的备份计划。但是,我想知道为什么这不起作用,所以我喜欢任何建议,我切换到对象而不是数组,并附有解释为什么数组不工作;)谢谢。/ p>
前animo, - Alexander Yngling
答案 0 :(得分:0)
所以,经过一段时间的睡眠后,它发生在我身上......这是一个数组索引。我正在使用JDO。我是个白痴;)
我考虑过删除这个问题,但是万一其他人在搜索这个问题,这就是问题所在:
http://www.datanucleus.org/products/datanucleus/jdo/orm/arrays.html
JDO无法知道数组索引已更新,因此您必须再次设置该字段,或使用以下命令告知JDO更新数据库:
JDOHelper.makeDirty(obj, "fieldName");