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 6898301
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:16:43+00:00 2026-05-27T07:16:43+00:00

I want to implement a one-to-many relation using Hibernate (in Java). I have two

  • 0

I want to implement a one-to-many relation using Hibernate (in Java). I have two entities:

  • Experiment
  • ExperimentGroup

Experiment has many ExperimentGroups. I tried to configure this one-to-many relation, the way the official Hibernate document recommends: http://docs.jboss.org/hibernate/core/3.6/reference/en-US/html/example-parentchild.html#example-parentchild-cascades

My config file:

<class name="ExperimentImpl" table="Experiment">
    <id name="id" type="int" column="id">
        <generator class="increment" />
    </id>
    <!-- One to Many   -->
    <set name="experimentGroups" table="ExperimentGroup" 
                lazy="false" fetch="select" cascade="all" inverse="true">
            <key>
                <column name="Experiment_id" not-null="true" />
            </key>
            <one-to-many class="ExperimentGroupImpl" />
    </set>  
</class>
<class name="ExperimentGroupImpl" table="ExperimentGroup">
    <id name="id" type="int" column="id">
        <generator class="increment" />
    </id>
    <many-to-one name="experiment" class="ExperimentImpl" fetch="select">
            <column name="Experiment_id" not-null="true" />
    </many-to-one>
</class>

Adding a new ExperimentGroup to an Experiment works fine, but deleting an Experiment (and all of its ExperimentGroups) causes an exception:

Cannot delete or update a parent row: a foreign key constraint fails
(testdb.ExperimentGroup, CONSTRAINT FK9C71D86238B5500C FOREIGN
KEY (Experiment_id) REFERENCES Experiment (id))

My ExperimentDAO code looks like this:

public void deleteExperiment(Experiment experiment) 
         throws DAOException
    {
        Session session = null;
        Transaction t = null;
        try{
            session = HibernateUtil.getSessionFactory().openSession();
            t = session.beginTransaction();
                session.delete(experiment);
            t.commit();
            session.flush();
            session.close();
        }catch (HibernateException e)
        {
            e.printStackTrace();
            if (t != null)
                t.rollback();

            if (session != null)
                session.close();

            throw new DAOException(e, "Could not delete Experiment");
        }
    }

EDIT:
The DAO code to create an Experiment and ExperimentGroup:

public Experiment createExperiment(String name, String description, RegisteredUser owner)
{
    Transaction tx = null;
    Session session = null;
    try
    {
        session = HibernateUtil.getSessionFactory().openSession();

        tx= session.beginTransaction();
        ExperimentImpl e = new ExperimentImpl();

        e.setName(name);
        e.setDescription(description);
        e.setOwner(owner);

        owner.getOwnedExperiments().add(e);

        session.save(e);
        tx.commit();
        session.flush();
        session.close();

        return e;
    } catch (HibernateException ex )
    {
        if (tx != null)
            tx.rollback();

        if (session!=null)
            session.close();

        throw ex;
    }
}




public ExperimentGroup createAndAddExperimentGroup(Experiment experiment, String experimentGroupName, Date startDate, Date endDate) throws ArgumentException
    {

        Transaction t = null;
        Session session = null;

        try
        {
            session = HibernateUtil.getSessionFactory().openSession();
            t = session.beginTransaction();
                ExperimentGroupImpl g = new ExperimentGroupImpl();
                g.setEndDate(endDate);
                g.setStartDate(startDate);
                g.setName(experimentGroupName);
                g.setExperiment(experiment);

                experiment.getExperimentGroups().add(g);
                g.setExperiment(experiment);

                session.save(g);
                session.update(experiment);
            t.commit();
            session.flush();
            session.close();

            return g;

        }catch(HibernateException e)
        {
            if (t!=null)
                t.rollback();

            if (session!= null)
                session.close();

            throw e;
        }
    }

There are many other properties for an Experiment, like the name, description etc., which I have removed from the config file, because they don’t have an impact on the one-to-many relation.

Any suggestion? What did I wrong?

  • 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-27T07:16:44+00:00Added an answer on May 27, 2026 at 7:16 am

    I am under the impression that you are trying to delete a detached entity that you manually created. I would try to use the primary key of the Experiment you want to delete, and load before actually deleting it:

    session = HibernateUtil.getSessionFactory().openSession();
    t = session.beginTransaction();
    ExperimentImpl persistentExperiment = session.load(ExperimentImpl.class, experiment.getId());
    session.delete(persistentExperiment);
    t.commit();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have two entities: User and UserGroup . They have a one-to-many relationship
i have one problem in one-to-many mapping using hibernate. i have 2 classes, Person
I want to implement a one-to-many relation in my DB with the users-table in
I have a nice interface, and I want to implement one member of it
I want to implement singleten design pattern in iphone code I have one array.
I have a model book with a one to many relation with authors. I
I have Plan table that has a one to many relationship with a Price
I have Web page in share-point 2010 ,its has two web parts one for
I have three related entities: a user has many device a user has a
I want to enable something like a one-to-many relation between a text object and

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.