Note that there are some explanatory texts on larger screens.

plurals
  1. POHibernate OneToOne lazy loading and cascading
    primarykey
    data
    text
    <p>Here's what I'm trying to do.</p> <ol> <li>Create a parent with a OneToOne relation to a child</li> <li>The parent has to fetch the children using lazy loading</li> <li>If parent is removed, so is the child</li> <li>If the child is removed, the parent should not be affected</li> <li>The cascade update and delete has to be translated into DDL</li> </ol> <p><strong>class Parent</strong></p> <pre><code>@OneToOne(mappedBy = "parent", cascade = CascadeType.ALL) public Child getChild() </code></pre> <p><strong>class Child</strong></p> <pre><code>@OneToOne(fetch = FetchType.LAZY) @OnDelete(action = OnDeleteAction.CASCADE) @JoinColumn(name="parent_id") public Parent getParent() </code></pre> <p>I've got <strong>point 1, 3, 4</strong> fully working and <strong>Point 5</strong> partially working, still need to solve how to translate the update part indo DDL.</p> <p><strong>Point 2</strong> is the big issue here, with my current solution the parent does not load the child lazily. The child however does load the parent lazily, but inverting the annotations would mess upp the cascading (<strong>points 3, 4 and 5</strong>).</p> <p>I'm very confused right now, hoping I've missed something obvious, so any help would be greatly appreciated.</p> <p><strong>EDIT:</strong> Code requested by Adeel Ansari </p> <p>'fetch=FetchType.LAZY' has been added to class Parent, otherwise the same as above.</p> <pre><code>IParentDAO parentDAO = DAOFactory.getFactory().getParentDAO(); parentDAO.beginTransaction(); //findByPrimaryKey uses 'org.hibernate.Session.get(Class clazz, Serializable id)' parentDAO.findByPrimaryKey(1l); parentDAO.commitTransaction(); </code></pre> <p>The resulting hibernate queries, one fetching Parent and one fetching Child:</p> <pre><code>Hibernate: select parent0_.id as id0_0_ from parents parent0_ where parent0_.id=? Hibernate: select child0_.id as id1_0_, child0_.parent_id as parent2_1_0_ from childs child0_ where child0_.parent_id=? </code></pre> <p>Here's the code for findByPrimaryKey:</p> <pre><code>public class HibernateParentDAO extends HibernateDAO&lt;Parent, Long&gt; implements IParentDAO { public HibernateParentDAO() { super(Parent.class); } } public abstract class HibernateDAO&lt;T, ID extends Serializable&gt; implements IGenericDAO&lt;T, ID&gt; { private Class&lt;T&gt; persistentClass; public HibernateDAO(Class&lt;T&gt; c) { persistentClass = c; } @SuppressWarnings("unchecked") public T findByPrimaryKey(ID id) { return (T) HibernateUtil.getSession().get(persistentClass, id); } } </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload