Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6664319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:35:50+00:00 2026-05-26T02:35:50+00:00

I have 2 objects Parent and Child associated with a one to many mapping.

  • 0

I have 2 objects Parent and Child associated with a one to many mapping.

Now I want to delete all the childs of Parent.
I used the following code but it does not have any effect.

 //start tx
     Parent p = getFromDb();
        p.setChilds(null) ; explicitly setting to null so that childs get deleted
        session.merge(p);
  //commit tx

I have the following in my configurations:

<set name="myChilds" inverse="true" lazy="false" cascade="all">
            <key>
                <column name="parentId" />
            </key>
            <one-to-many class="com.xyz.MyChild" />
        </set>

Am not getting any exception but childs not get deleted.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T02:35:51+00:00Added an answer on May 26, 2026 at 2:35 am

    The myChilds collection is marked as the inverse association of the many-to-one from child to parent. This means that Hibernate uses the other side of the association to decide if the association exists or not.

    You should thus set the child.parent to null rather than nulling (or emptying, which is much cleaner than nulling) the set of children.

    This, however, won’t be sufficient. Breaking an association between a parent and its children doesn’t kill the children. It just makes them orphan. If you want to delete them, you must call session.delete() on every child.

    Finally, merge is not useful at all here. The goal of merge is to copy the state of a detached entity to its attached version. Your parent entity is already attached.

    You seem to have missed many parts of the very good explanations in the Hibernate reference documentation. Read it again.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Parent/Child object/mapping as follows: class Parent { int Id; string name;
I have a parent object which has a one to many relationship with an
I have two tables without any cascade deleting. I want to delete parent object
Hibernate mapping question where the behavior is ambiguous and/or dangerous. I have a one-to-many
I have a parent-child relationship between two objects. Parent :has_many :children Child :belongs_to :parent
I have a parent child collection objects and was wondering how to get a
Let's say I have a parent/child-relationship ob objects and try to create a parent
I have the following table structure: parent(parentId) child(childId, parentId fk) Then, I have the
Relating to my last question here: Rails: Finding all associated objects to a parent
I have a parent class which contains a child object. I am using set

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.