We have the following mapping:

@Entity
public class A {
    private B b;

    @OneToOne
    public B getB() {
        return b;
    }
}

When we delete an object of class A it must not delete the referenced object B. At the moment we get an exception when we try to delete A because of the existing relationship to B. How is the correct mapping?

link|improve this question

64% accept rate
what is the error, and sql log? – James Sep 27 '11 at 14:36
feedback

1 Answer

You should disable cascade delete

@OneToOne(cascade = {})

or you can try

@OneToOne(orphanRemoval=false)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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