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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T02:56:30+00:00 2026-05-18T02:56:30+00:00

First of all, as you can see, I work in Java and specifically in

  • 0

First of all, as you can see, I work in Java and specifically in NetBeans IDE.
So, I have a class Person that extends two classes : Trainer, and Athlete.

In the main, I create a new ArrayList list = new ArrayList();

and then, i fill the list with objects that I’ve created and made persistent.

Trainer tr1=        new Trainer("George","White","England",5665);
Athlete ath1=       new Athlete("Mairy","Willians","France",1,'f',"21/3/1988",68,172,"France");
list.add(ath1);
Athlete ath2=new Athlete("Iggy","Black","USA",2,'f',"10/4/1988",70,175,"U.S.A.");
list.add(ath2);
tr1.setAthletes(list);

(Those fields, are well defined in the constructor of the classes trainer, and athlete respectively.

I also make them persistent.

em2.persist(tr1);
em2.persist(ath1);
em2.persist(ath2);

But in the end, despite of Athletes and Trainers being persistent, the lists that I have are not.

Thats where my problem starts, I want those lists to be persistent.

Here, those lists are working and tested and there are ok, but they are good to go in Java level, and not in ObjectDB level.

Should i start over?

Anyone that can help me out with this guys? I really need help, that’s serious.

PS: Of course, I have made the imports that are needed such as

import javax.persistence.*;
import java.util.*;

EntityManagerFactory emf2 = Persistence.createEntityManagerFactory("$objectdb/db/personas2.odb");
EntityManager em2 = emf2.createEntityManager();
em2.getTransaction().begin();
em2.close();
emf2.close();
  • 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-18T02:56:31+00:00Added an answer on May 18, 2026 at 2:56 am

    But in the end, despite of Athletes and Trainers being persistent, the lists that I have are not.

    Some ideas:

    • Make sure that you commit the transaction (although you mentioned that entities are persisted).

    • If your one to many association between Trainer and Athlete is bi-directional (maybe show your entities), make sure to set the “other” side of the link correctly, like this:

      Trainer tr1 = new Trainer("George","White","England",5665);
      Athlete ath1 = new Athlete("Mairy","Willians","France",1,'f',"21/3/1988",68,172,"France");
      ath1.setTrainer(tr1); // set the other side of the link
      list.add(ath1);
      ...
      tr1.setAthletes(list);
      

      or add a method in your entity (in Trainer here):

      public void addToAthletes(Athlete athlete) {
          athlete.setTrainer(this);
          this.athletes.add(athlete);
      }
      

      and replace the above lines with:

      Trainer tr1 = new Trainer("George","White","England",5665);
      Athlete ath1 = new Athlete("Mairy","Willians","France",1,'f',"21/3/1988",68,172,"France");
      tr1.addToAthletes(ath1);
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

First of all, I know how to build a Java application. But I have
I can't understand the concept and, first of all, where it belongs. Is it
First of all: I am not an experienced ClearCase user, but I have lots
First of all, let me say I am very new to rails, have been
first of all, this is the first week that I use swing, then sorry
First of all... Sorry for this post. I know that there are many many
First of all, I don't need a textual comparison so Beyond Compare doesn't do
First of all, I'm fairly sure snapping to grid is fairly easy, however I've
First of all (in case this is important) I'm using ActiveState's Perl (v5.8.7 built
First of all there is a partial question regarding this, but it is not

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.