Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As a follow on question to this one: jpa @version on google appengine with @OneToMany: appengine bug or usage error?

Given the same set up, a MainEntity with a @OneToMany mapping to SubEntitys, is there any requirement (JPA, DataNucleus, Appengine) for equals and hashCode methods on SubEntity?

Specifically, if I have a single MainEntity which has one SubEntity and I do begin(), merge(), commit() then the MainEntity version number gets incremented if SubEntity equals is not overridden but it doesn't if it is changed to something that compares all the fields. Note that I'm not modifying anything, just doing a merge of a detached entity.

There is some even odder behaviour in the default equals case, but there's no point going into that unless having default equals is OK.

I have some detailed test case code, but it's probably better not cluttering this post up with that until it's confirmed that it's legitimate.

Thanks for any comments.

@Entity
public class MainEntity implements Serializable {
    private static final long serialVersionUID = 1L;

    protected static Key singletonKey =
         KeyFactory.createKey(MainEntity.class.getSimpleName(), 1);

    // Primary Key
    @Id
    protected Key id = singletonKey;

    // Use optimistic locking
    @Version
    protected long version;

    // Ref to sub entity, LAZY to be explicit
    @OneToMany(cascade=CascadeType.ALL, fetch=FetchType.LAZY, orphanRemoval=true)
    protected List<SubEntity> subs = new ArrayList<SubEntity>();
}


@Entity
public class SubEntity implements Serializable {
    private static final long serialVersionUID = 1L;

    // Primary Key
    @Id
    protected Key id;

    // Use optimistic locking
    @Version
    protected long version;

    // Get variable part of key
    public String getKey() { return id.getName(); }

    // Set variable part of key
    public void setKey(String key) {
            id = KeyFactory.createKey(MainEntity.singletonKey,
                                      SubEntity.class.getSimpleName(), key);
    }

    // Pretend contents
    protected int contents;

    // modifier for contents
    public void incContent(int step) { contents += step; }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.