I have a problem with a simple unidirectional mapping. Here are my entities:

@Entity
public class Account extends UUIDBase {
    private Profile profile;

    @OneToOne(cascade = CascadeType.ALL, optional = false)
    public Profile getProfile() {
        return profile;
    }

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

@Entity
public class Profile extends UUIDBase {
   ...
}

Each account must have a Profile assigned. The account should be the owning side of the mapping. Where is the best place to initialize the dependendt Profile attribute? I tried to initialize the profile in the constructor of the Account entity but this doesn´t work.

link|improve this question

64% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You could initialize it in the constructor, but setting it in the application or a factory may be better.

What does not work, what error do you get?

link|improve this answer
Ok, thank you for your answer. I think to initialize the reference in a factory is really the better solution. Initialization in the constructor will also work. I just had have an error in my logic. – Sven Moschel Jun 16 '11 at 6:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.