Google DataStore не хранит дочерние объекты - PullRequest
0 голосов
/ 14 июля 2009

У меня есть Курс объекта, внутри которого есть ключ к другому объекту (Документу).

@PersistenceCapable(identityType = IdentityType.APPLICATION, detachable="true")
public class Course{

 @PrimaryKey
    @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
    private Key key;

 @Persistent private Key document;

public Document getDocument() {
  if (document != null)
  return new DocumentServiceImpl().getDocumentById(document.getId());
  return null;
 }
public void setDocument(Document document) {
  if (document != null)
   this.document = new DocumentServiceImpl().saveAndGetKey(document);
 }

В некотором тестовом коде я создаю новую сущность Course и назначаю новую сущность Document, и сущность документа сохраняется, когда я устанавливаю свойство документа в курсе. Когда я сохраняю курс, он сохраняется без ошибок, однако, как только он будет сохранен, свойство документа будет иметь значение null.

Есть идеи? Вот моя функция сохранения для курса:

public Boolean save(Course c){
  Boolean isSaved = false;
  PersistenceManager pm = PMF.get().getPersistenceManager();

  try{   
   pm.makePersistent(c);
   isSaved = true;
  }
  catch(Exception e){
   e.printStackTrace();
   isSaved = false;
  }
  finally{
   pm.close();
  }

  return isSaved;

 }

Изменить, чтобы добавить:

@PersistenceCapable(identityType = IdentityType.APPLICATION, detachable="true")
public class Document{
 @PrimaryKey
    @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
    private Key key;

 @Persistent private String   data;
 @Persistent private Set<Key>  dTags;
 @Persistent private Date   dateCreated;
 @Persistent private Date   dateEdited;

 public Document(){
  this.dateCreated = new Date();
 }

 public Long getId() {
  if (key == null){
   return null;
  } else {
   return key.getId();
  }
 }
 public void setId(Long id) {
  if (id != null)
  key = KeyFactory.createKey(this.getClass().getSimpleName(), id);
 }

из DocumentServicesImpl:

public Key saveAndGetKey(Document d) {
  try{
   if (d.getKey() == null){
    save(d);
   }

   return d.getKey();
  } catch (Exception e){
   return null;
  }  
 }

public Boolean save(Document d) {
  Boolean isSaved = false;
  PersistenceManager pm = PMF.get().getPersistenceManager();

  try {
   pm.makePersistent(d);
   isSaved = true;
  } catch (Exception e) {
   e.printStackTrace();
   isSaved = false;
  }finally{pm.close();}

  return isSaved;

 }

публичный документ getDocumentById (Long id) {

PersistenceManager pm = PMF.get (). GetPersistenceManager (); Документ d = новый документ ();

попробуй { d = pm.getObjectById (Document.class, id); } в конце концов { pm.close (); }

возврат d; } * * Тысяча двадцать-один

1 Ответ

1 голос
/ 14 июля 2009
  • Как выглядит класс Document как? * * 1002
  • как выглядит класс DocumentServiceImpl?
  • Для чего предназначен ваш юнит-тест saveAndGetKey () как выглядит? Проверяет ли это, что возвращаемое значение является действительным ключом? можете ли вы найти этот документ в хранилище данных?
  • Являются ли ваши классы ServiceImpl PersistenceCapable, или PersistenceAware? Я не уверен, должны ли они основываться или не основываться только на том, что вы нам показали.

Новая идея устранения неполадок ниже: Что произойдет, если вы попробуете что-то простое, как это: Только сейчас, сделайте Course.document публичным. Тогда посмотрите, работает ли этот более простой способ создания ваших сущностей.

pm = yourPMfactory.getPersistenceManger();
Course c = new Course();
Document d = new Document();
c.document = d;
pm.makePersistent(c);

Key myKey = c.getKey();
Course c2 = (Course) pm.getObjectById(Course.class, myKey.getId());
assertTrue(c.document != null); //or however your favorite test suite does assertions.
pm.close();
...