2

私はjdo datanucleusでgwtを使用しています。親と一緒に子を取得する必要があります。しかし、親にアクセスするときに子を取得していません。私のコードは次のとおりです

私の親クラスは

@PersistenceCapable(identityType = IdentityType.APPLICATION, table = "user")
public class User implements Serializable {

    private static final long serialVersionUID = 2660867968471555842L;

    @PrimaryKey
    @Persistent
    private String email;

    @Persistent(defaultFetchGroup = "true",mappedBy="user")
    private UserProfile profile;

    public User() {}

    public User(String email) {
        this.email = email;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public UserProfile getProfile() {
        return profile;
    }

    public void setProfile(UserProfile profile) {
        this.profile = profile;
    }
}

そして私の子クラスは

@PersistenceCapable(identityType = IdentityType.APPLICATION,table = "user_profile")
public class UserProfile implements Serializable {

    private static final long serialVersionUID = -6818036410894395030L;

    @PrimaryKey
    @Persistent(defaultFetchGroup="true")
    private User user;

    @Persistent
    private String name;

    public UserProfile() {}

    public UserProfile(User user) {
        this.user = user;
        user.setProfile(this);
    }

    public User getUser() {
        return user;
    }

    public void setUser(User user) {
        this.user = user;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

}

次のクエリでデータを取得しています

PersistenceManager pm = PMF.get().getPersistenceManager();
                 User user=null;

                try{
                    String userId ="abc@abc.com";
                    Query userQuery = pm.newQuery(User.class);
                    userQuery.setFilter("email == '" + userId + "'");
                    userQuery.setUnique(true);
                    user = (User) userQuery.execute();
                } catch (Exception e) {
                    throw new IllegalAccessError("Failed to get the User..");
                }finally{
                    pm.close();
                }

しかし、私はオブジェクト user で userprofile null を取得しています。問題はどこだ ?親で子をロードする方法は?

4

1 に答える 1

2

あなたが答えを見つけたかどうかはわかりませんが、これに出くわした人のために、私がどのようにそれを機能させたかを共有したかっただけです.

@PersistenceCapable(detachable = "true") 
@FetchGroup(name = "fooGroup", members = { @Persistent(name = "list") }) 
public class ParentClass {

    @Persistent(mappedBy = "parent")
    @Element(dependent = "true") //can not exist without parent
    private List<ChildClass> list;

}

@PersistenceCapable(detachable = "true") 
public class ChildClass {
    @Persistent
    private ParentClass parent;
}

次に、フェッチを行います。

PersistenceManager pm = PMF.get("eventual-reads-shortdeadlines").getPersistenceManager();
pm.setDetachAllOnCommit(true); 
pm.getFetchPlan().addGroup("fooGroup");
Transaction tx = pm.currentTransaction();

    try {
        tx.begin();

        Query query = pm.newQuery(ParentClass.class);
        list = (List<ParentClass>) query.execute();

        tx.commit();
    } catch (Exception ex) {
        ...
    } finally {
        if (pm != null) {
            if(pm.currentTransaction().isActive()){
                pm.currentTransaction().rollback();
            }
            pm.close();
        }
    }

ParentClass には、それぞれのすべての ChildClass が含まれているはずです。それが役立つことを願っています!

于 2012-06-21T18:11:01.337 に答える